summaryrefslogtreecommitdiff
path: root/include/lexer/token.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lexer/token.h')
-rw-r--r--include/lexer/token.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/lexer/token.h b/include/lexer/token.h
index ab8231d..f51b5e9 100644
--- a/include/lexer/token.h
+++ b/include/lexer/token.h
@@ -39,6 +39,17 @@ enum token_kind {
TOK_IDENTIFIER,
+ TOK_COMMA,
+ TOK_DOT,
+ TOK_COLON,
+ TOK_SEMICOLON,
+ TOK_LPAREN,
+ TOK_RPAREN,
+ TOK_LCURLY,
+ TOK_RCURLY,
+ TOK_LSQUARE,
+ TOK_RSQUARE,
+
/*
* Do not modify this ordering without updating parser/types.c
*/