From c506c3458a07485169cc38ce27d5cf21601136c2 Mon Sep 17 00:00:00 2001 From: A404M Date: Thu, 5 Jun 2025 16:24:21 +0330 Subject: trying to add macro --- src/compiler/ast-tree.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/compiler/ast-tree.h') 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 { -- cgit v1.2.3