summaryrefslogtreecommitdiff
path: root/src/ast/ast.h
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-27 12:33:58 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-27 12:33:58 +0000
commita3b85c9737b509fd2a792b65aa2365b9bcc9fe6a (patch)
tree829577514fc4f0436e61c523eb1082afe891bcbf /src/ast/ast.h
parentb40fc44f799b4810981d37d9030ca69d768cc0b2 (diff)
Support for more attributes
Diffstat (limited to 'src/ast/ast.h')
-rw-r--r--src/ast/ast.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/ast.h b/src/ast/ast.h
index c971d54..967f27f 100644
--- a/src/ast/ast.h
+++ b/src/ast/ast.h
@@ -422,6 +422,7 @@ struct ASTNode
int is_packed; // @packed attribute.
int align; // @align(N) attribute, 0 = default.
int is_incomplete; // Forward declaration (prototype)
+ int is_export; // @export attribute
char **used_structs; // Names of structs used/mixed-in
int used_struct_count;
} strct;