summaryrefslogtreecommitdiff
path: root/src/compiler/lexer.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-09 22:54:40 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-09 22:54:40 +0330
commit5e95fdfa4b7e6960d83480b8e4062e7484037af7 (patch)
tree742e139dc1149daf4c5565b07c8e58a665355b4a /src/compiler/lexer.h
parent9b355a18b14f2ece7707e6c5334124dcc0961e2d (diff)
add builtins (cast)
Diffstat (limited to 'src/compiler/lexer.h')
-rw-r--r--src/compiler/lexer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/lexer.h b/src/compiler/lexer.h
index eff75c5..d7145e1 100644
--- a/src/compiler/lexer.h
+++ b/src/compiler/lexer.h
@@ -11,6 +11,7 @@ typedef enum LexerToken {
LEXER_TOKEN_SYMBOL_CLOSE_PARENTHESIS,
LEXER_TOKEN_ORDER1 = LEXER_TOKEN_SYMBOL_CLOSE_PARENTHESIS,
LEXER_TOKEN_IDENTIFIER,
+ LEXER_TOKEN_BUILTIN,
LEXER_TOKEN_KEYWORD_TYPE,
LEXER_TOKEN_KEYWORD_VOID,
LEXER_TOKEN_KEYWORD_I8,