diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-05 16:24:21 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-05 16:24:21 +0330 |
commit | c506c3458a07485169cc38ce27d5cf21601136c2 (patch) | |
tree | 6f41a300d2ee4a503a97fbeafa3e509133f02d63 /src/compiler/ast-tree.h | |
parent | 3a079c1da7508839088c0c70795819692954eb43 (diff) |
trying to add macro
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r-- | src/compiler/ast-tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h index eac7722..7a88f28 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -213,6 +213,7 @@ typedef struct AstTreeFunction { AstTreeVariables arguments; AstTreeScope scope; AstTree *returnType; + bool isMacro; } AstTreeFunction; typedef struct AstTreeTypeFunctionArgument { @@ -228,6 +229,7 @@ typedef struct AstTreeTypeFunction { AstTreeTypeFunctionArgument *arguments; size_t arguments_size; AstTree *returnType; + bool isMacro; } AstTreeTypeFunction; typedef struct AstTreeFunctionCallParam { |