aboutsummaryrefslogtreecommitdiff
path: root/src/compiler/ast-tree.h
diff options
context:
space:
mode:
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 {