summaryrefslogtreecommitdiff
path: root/src/compiler/lexer.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-03-26 02:06:04 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-03-26 02:06:04 +0330
commit3950c23e40207cd8a374fcd4aa5739c0a63115f5 (patch)
tree9bc4703a7eeb2d2ae9ca6324e61c56598cefa134 /src/compiler/lexer.h
parent7bd975ec69c8dc9d5a6343a2e5f06bd7dd78d78e (diff)
add address operator
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 4789297..1ebe405 100644
--- a/src/compiler/lexer.h
+++ b/src/compiler/lexer.h
@@ -61,6 +61,7 @@ typedef enum LexerToken {
LEXER_TOKEN_SYMBOL_GREATER_OR_EQUAL,
LEXER_TOKEN_SYMBOL_SMALLER_OR_EQUAL,
LEXER_TOKEN_SYMBOL_POINTER,
+ LEXER_TOKEN_SYMBOL_ADDRESS,
LEXER_TOKEN_NONE,
} LexerToken;