summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChloe M. <chloe@mirocom.org>2026-05-23 08:10:57 -0400
committerChloe M. <chloe@mirocom.org>2026-05-23 08:13:45 -0400
commit86645eb137a6d793ea095510ee08b8313c9d0cbe (patch)
tree21d00a9414edad9d86d25fd64132501489295d16 /include
parent3e3ccae003ad0990555d17590588672aedc428c4 (diff)
core: lexer: Add arrow token
Signed-off-by: Chloe M. <chloe@mirocom.org>
Diffstat (limited to 'include')
-rw-r--r--include/cescal/token.h1
1 files changed, 1 insertions, 0 deletions
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' */