diff options
author | Quinn Stephens <quinn@osmora.org> | 2025-06-09 22:05:16 -0400 |
---|---|---|
committer | Quinn Stephens <quinn@osmora.org> | 2025-06-09 22:05:16 -0400 |
commit | f25568b5830beb9a12709644f26d4fc12a8cad79 (patch) | |
tree | 50a176ef45b99675b64dc80b67ee72f33469160d /include/lexer/token.h | |
parent | 13923af3ab57dbd826ce6f36b38228eea595590f (diff) |
lexer: Add asterisk
Signed-off-by: Quinn Stephens <quinn@osmora.org>
Diffstat (limited to 'include/lexer/token.h')
-rw-r--r-- | include/lexer/token.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lexer/token.h b/include/lexer/token.h index f51b5e9..c6264d0 100644 --- a/include/lexer/token.h +++ b/include/lexer/token.h @@ -49,6 +49,7 @@ enum token_kind { TOK_RCURLY, TOK_LSQUARE, TOK_RSQUARE, + TOK_ASTERISK, /* * Do not modify this ordering without updating parser/types.c |