diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-05 15:09:23 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-05 15:09:23 +0330 |
commit | b5772e1c6961dd4b99b91b060b57584d4868aa2b (patch) | |
tree | 0b2d3c4f9b4d58981439e027423129ff0f427572 /src/compiler/lexer.h | |
parent | 5d43a23a42725d9e88be76ce04260dbd4b57d370 (diff) |
working on access operator
Diffstat (limited to 'src/compiler/lexer.h')
-rw-r--r-- | src/compiler/lexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/lexer.h b/src/compiler/lexer.h index 6862c0d..4b59dff 100644 --- a/src/compiler/lexer.h +++ b/src/compiler/lexer.h @@ -65,6 +65,7 @@ typedef enum LexerToken { LEXER_TOKEN_SYMBOL_POINTER, LEXER_TOKEN_SYMBOL_ADDRESS, LEXER_TOKEN_SYMBOL_DEREFERENCE, + LEXER_TOKEN_SYMBOL_ACCESS, LEXER_TOKEN_NONE, } LexerToken; |