dynamic ternaries in ir tree evaluation, fixes to over-ambitious parsing of identifier qualifiers

This commit is contained in:
Ryan Fleury
2025-04-29 15:26:40 -07:00
parent 0a214fda3c
commit f521e01d6e
4 changed files with 44 additions and 6 deletions
+7
View File
@@ -249,6 +249,13 @@ struct Discriminated_Union
};
};
raddbg_auto_view_rule(Discriminated_Union,
kind == Kind.First ? first :
kind == Kind.Second ? second :
kind == Kind.Third ? third :
kind == Kind.Fourth ? fourth :
$);
struct Linked_List{
Linked_List *next;
Linked_List *prev;