diff options
author | Quinn Stephens <quinn@osmora.org> | 2025-06-08 10:10:04 -0400 |
---|---|---|
committer | Quinn Stephens <quinn@osmora.org> | 2025-06-08 10:10:04 -0400 |
commit | ca038a85d6efaf3cfc7be7b44296adafa8281ac9 (patch) | |
tree | cce1a812b94c7465b6543f7f3665b682e83834d1 /include/lexer/token.h | |
parent | 7ea671c8417f7abfffd7276348a93a7eb2665aaa (diff) |
lexer: Add more token kinds
Signed-off-by: Quinn Stephens <quinn@osmora.org>
Diffstat (limited to 'include/lexer/token.h')
-rw-r--r-- | include/lexer/token.h | 11 |
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 */ |