From decaf9321cbf119d1efea0c4667f49b0ab2e8c96 Mon Sep 17 00:00:00 2001 From: A404M Date: Tue, 11 Feb 2025 00:00:35 +0330 Subject: add unary + - --- src/compiler/lexer.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/compiler/lexer.h') 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, -- cgit v1.2.3