From 07859d37359a82542267401a83392519e4984eb3 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 23 May 2026 08:54:14 -0400 Subject: core: lexer: Add token for ':' byte Signed-off-by: Ian Moffett --- include/cescal/token.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/cescal/token.h b/include/cescal/token.h index 5f6b903..1f214bb 100644 --- a/include/cescal/token.h +++ b/include/cescal/token.h @@ -17,6 +17,7 @@ typedef enum { TT_LPAREN, /* '(' */ TT_RPAREN, /* '( */ TT_COMMA, /* ',' */ + TT_COLON, /* ':' */ TT_ARROW, /* '->' */ TT_DEFINE, /* '#define' */ TT_IFNDEF, /* '#ifndef' */ -- cgit v1.2.3