From ca038a85d6efaf3cfc7be7b44296adafa8281ac9 Mon Sep 17 00:00:00 2001 From: Quinn Stephens Date: Sun, 8 Jun 2025 10:10:04 -0400 Subject: lexer: Add more token kinds Signed-off-by: Quinn Stephens --- include/lexer/token.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'include/lexer/token.h') 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 */ -- cgit v1.2.3