diff options
| author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-11 00:00:35 +0330 |
|---|---|---|
| committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-11 00:00:35 +0330 |
| commit | decaf9321cbf119d1efea0c4667f49b0ab2e8c96 (patch) | |
| tree | a6352e2ef68a83514a15f4f57a87430383e47e04 /src/compiler/lexer.h | |
| parent | 6d127edfa0162219c54b10e3496a3e9530f62792 (diff) | |
add unary + -
Diffstat (limited to 'src/compiler/lexer.h')
| -rw-r--r-- | src/compiler/lexer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/lexer.h b/src/compiler/lexer.h index 656084e..bc38270 100644 --- a/src/compiler/lexer.h +++ b/src/compiler/lexer.h @@ -28,6 +28,8 @@ typedef enum LexerToken { LEXER_TOKEN_SYMBOL_COMMA, LEXER_TOKEN_SYMBOL_PLUS, LEXER_TOKEN_SYMBOL_MINUS, + LEXER_TOKEN_SYMBOL_SUM, + LEXER_TOKEN_SYMBOL_SUB, LEXER_TOKEN_SYMBOL_MULTIPLY, LEXER_TOKEN_SYMBOL_DIVIDE, LEXER_TOKEN_SYMBOL_MODULO, |