diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-05 20:27:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-05 20:27:01 +0100 |
| commit | 810ca89253a9f7b4e2b6eb1e527a66e2e168708b (patch) | |
| tree | b16904ae8e9c9b1fbcd3b9658a4c23c7cc3c199e /src/parser.hpp | |
| parent | 7237747ee7f8c53285dc8138cfad9402be1bf77d (diff) | |
| parent | 2daaf57ad1f0b0cd166704f808736ddf7f603e23 (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.hpp | 3 |
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; }; |