Refactor protocols.

This commit is contained in:
Christoffer Lerno
2023-10-06 20:29:20 +02:00
committed by Christoffer Lerno
parent f3e3aa231d
commit 99cfaa1583
98 changed files with 756 additions and 590 deletions

View File

@@ -1,9 +1,9 @@
module std::os::macos::objc @if(env::DARWIN);
def Class = distinct void*;
def Method = distinct void*;
def Ivar = distinct void*;
def Selector = distinct void*;
distinct Class = void*;
distinct Method = void*;
distinct Ivar = void*;
distinct Selector = void*;
fault ObjcFailure
{