From 86645eb137a6d793ea095510ee08b8313c9d0cbe Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Sat, 23 May 2026 08:10:57 -0400 Subject: core: lexer: Add arrow token Signed-off-by: Chloe M. --- 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 eb9fc39..e215371 100644 --- a/include/cescal/token.h +++ b/include/cescal/token.h @@ -17,6 +17,7 @@ typedef enum { TT_LPAREN, /* '(' */ TT_RPAREN, /* '( */ TT_COMMA, /* ',' */ + TT_ARROW, /* '->' */ TT_RETURN, /* 'return' */ TT_PUB, /* 'pub' */ TT_PROC, /* 'proc' */ -- cgit v1.2.3