diff options
| author | gingerBill <bill@gingerbill.org> | 2022-02-08 17:04:55 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-02-08 17:04:55 +0000 |
| commit | 0cc40db565a9c4b99e6fa0844b9ac512558626e4 (patch) | |
| tree | 0273b88ab9e4b98fa6be130d808c9ed63dd8a35c /src/types.cpp | |
| parent | 30bb2382aa0c7a9d6407c0b28258cd9fd00c560d (diff) | |
Begin work on support objc intrinsics
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp index 9ee6ba359..cdb31c6e1 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -685,6 +685,16 @@ gb_global Type *t_map_header = nullptr; gb_global Type *t_equal_proc = nullptr; gb_global Type *t_hasher_proc = nullptr; +gb_global Type *t_objc_object = nullptr; +gb_global Type *t_objc_selector = nullptr; +gb_global Type *t_objc_class = nullptr; + +gb_global Type *t_objc_id = nullptr; +gb_global Type *t_objc_SEL = nullptr; +gb_global Type *t_objc_Class = nullptr; + + + gb_global RecursiveMutex g_type_mutex; struct TypePath; |