aboutsummaryrefslogtreecommitdiff
path: root/src/compiler/ast-tree.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-06-05 16:24:21 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-06-05 16:24:21 +0330
commitc506c3458a07485169cc38ce27d5cf21601136c2 (patch)
tree6f41a300d2ee4a503a97fbeafa3e509133f02d63 /src/compiler/ast-tree.h
parent3a079c1da7508839088c0c70795819692954eb43 (diff)
trying to add macro
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r--src/compiler/ast-tree.h2
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 {