diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-11 21:13:17 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-11 21:13:17 +0330 |
commit | e12086b3a9f2610425ca6fa73749453c762eb56e (patch) | |
tree | 89bc9e3e0f5a67c469bef24f8a2ff95af9e445ea /src/compiler/parser.h | |
parent | fe81eba1c232ab99bcfedf9546a82b06c796b086 (diff) |
added comptime keyword to variables
Diffstat (limited to 'src/compiler/parser.h')
-rw-r--r-- | src/compiler/parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/parser.h b/src/compiler/parser.h index 0e43c34..59bbaaf 100644 --- a/src/compiler/parser.h +++ b/src/compiler/parser.h @@ -134,6 +134,7 @@ typedef struct ParserNodeVariableMetadata { ParserNode *type; ParserNode *value; bool isLazy; + bool isComptime; } ParserNodeVariableMetadata; typedef struct ParserNodeFunctionDefnitionMetadata { |