summaryrefslogtreecommitdiff
path: root/src/compiler/lexer.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-18 23:42:10 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-18 23:42:10 +0330
commitdf4604f27bbd8ed42ea2c7026c7e4845aafd1a8b (patch)
treed877ced731ba28bf0ae8878d18b7eb392ff51404 /src/compiler/lexer.h
parent9eb9be33d7623a4759b0794073bd32489b865b3d (diff)
add while
fix some memory leaks
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 0a6da3a..92d943e 100644
--- a/src/compiler/lexer.h
+++ b/src/compiler/lexer.h
@@ -26,6 +26,7 @@ typedef enum LexerToken {
LEXER_TOKEN_KEYWORD_FALSE,
LEXER_TOKEN_KEYWORD_IF,
LEXER_TOKEN_KEYWORD_ELSE,
+ LEXER_TOKEN_KEYWORD_WHILE,
LEXER_TOKEN_NUMBER,