aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-10-05 20:27:01 +0100
committerGitHub <noreply@github.com>2025-10-05 20:27:01 +0100
commit810ca89253a9f7b4e2b6eb1e527a66e2e168708b (patch)
treeb16904ae8e9c9b1fbcd3b9658a4c23c7cc3c199e /src/entity.cpp
parent7237747ee7f8c53285dc8138cfad9402be1bf77d (diff)
parent2daaf57ad1f0b0cd166704f808736ddf7f603e23 (diff)
Merge pull request #5727 from harold-b/hb.intrinsics.objc_super
Add intrinsics.objc_super and Automatically emit objc_msgSend calls
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index d6d8f58de..2b21fdcac 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -251,6 +251,8 @@ struct Entity {
String link_name;
String link_prefix;
String link_suffix;
+ String objc_selector_name;
+ Entity *objc_class;
DeferredProcedure deferred_procedure;
struct GenProcsData *gen_procs;
@@ -266,6 +268,8 @@ struct Entity {
bool is_anonymous : 1;
bool no_sanitize_address : 1;
bool no_sanitize_memory : 1;
+ bool is_objc_impl_or_import : 1;
+ bool is_objc_class_method : 1;
} Procedure;
struct {
Array<Entity *> entities;