aboutsummaryrefslogtreecommitdiffstats
path: root/src/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lexer.h')
-rw-r--r--src/lexer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lexer.h b/src/lexer.h
index d864a1d..a214096 100644
--- a/src/lexer.h
+++ b/src/lexer.h
@@ -30,6 +30,13 @@ typedef enum TokenType {
30 TOKEN_FUN, 30 TOKEN_FUN,
31 TOKEN_STRUCT, 31 TOKEN_STRUCT,
32 32
33 // Arithmetic ops.
34 TOKEN_ADD,
35 TOKEN_SUB,
36 TOKEN_MUL,
37 TOKEN_DIV,
38 TOKEN_MOD,
39
33 // Special operators. 40 // Special operators.
34 TOKEN_COLON, 41 TOKEN_COLON,
35 TOKEN_DOT, 42 TOKEN_DOT,