aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
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/parser.hpp
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/parser.hpp')
-rw-r--r--src/parser.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 979b44618..6127468d4 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -48,7 +48,8 @@ gb_global String const addressing_mode_strings[] = {
struct TypeAndValue {
Type * type;
AddressingMode mode;
- bool is_lhs; // Debug info
+ bool is_lhs; // Debug info
+ Type * objc_super_target; // Original type of the Obj-C object before being converted to the superclass' type by the objc_super() intrinsic.
ExactValue value;
};