aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorHarold Brenes <harold@hbrenes.com>2025-04-19 08:04:23 -0400
committerHarold Brenes <harold@hbrenes.com>2025-04-20 21:53:46 -0400
commita3de9c8de4e539905a85f3cc060f95529b402f18 (patch)
treecd441f8970e81170fda231587b801040088123fb /src/entity.cpp
parent2dedb199b896e97ddd75040fdb935af6d57c5b49 (diff)
Add initial support for Objective-C class implementation
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index b2148aa7b..9a5996e3d 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -235,6 +235,9 @@ struct Entity {
Type * type_parameter_specialization;
String ir_mangled_name;
bool is_type_alias;
+ bool objc_is_implementation;
+ Type* objc_superclass;
+ Type* objc_ivar;
String objc_class_name;
TypeNameObjCMetadata *objc_metadata;
} TypeName;