From c9097ef44a6a7d5a37b7910b44e4b9c321415231 Mon Sep 17 00:00:00 2001 From: Quinn Stephens Date: Sun, 8 Jun 2025 09:53:35 -0400 Subject: parser: Get started on type system Signed-off-by: Quinn Stephens --- include/lexer/token.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/lexer/token.h') 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 }; -- cgit v1.2.3