diff options
author | Quinn Stephens <quinn@osmora.org> | 2025-06-08 09:53:35 -0400 |
---|---|---|
committer | Quinn Stephens <quinn@osmora.org> | 2025-06-08 09:53:35 -0400 |
commit | c9097ef44a6a7d5a37b7910b44e4b9c321415231 (patch) | |
tree | 163ea7cfc5d575d366574f9ef4e293d03887188f /include/lexer/token.h | |
parent | a217d1232640123ef8fa5a036eb9978e5ccbadc4 (diff) |
parser: Get started on type system
Signed-off-by: Quinn Stephens <quinn@osmora.org>
Diffstat (limited to 'include/lexer/token.h')
-rw-r--r-- | include/lexer/token.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/lexer/token.h b/include/lexer/token.h index 134582a..ab8231d 100644 --- a/include/lexer/token.h +++ b/include/lexer/token.h @@ -39,6 +39,9 @@ enum token_kind { TOK_IDENTIFIER, + /* + * Do not modify this ordering without updating parser/types.c + */ TOK_VOID, TOK_INT }; |