core: lexer: Add token for ':' byte

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-05-23 08:54:14 -04:00
parent a6f776e1f2
commit 07859d3735
3 changed files with 6 additions and 0 deletions
+1
View File
@@ -17,6 +17,7 @@ typedef enum {
TT_LPAREN, /* '(' */
TT_RPAREN, /* '( */
TT_COMMA, /* ',' */
TT_COLON, /* ':' */
TT_ARROW, /* '->' */
TT_DEFINE, /* '#define' */
TT_IFNDEF, /* '#ifndef' */