From 5f726024711e0c803a50e3124820d7d4b214dd93 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 23 May 2026 09:01:18 -0400 Subject: core: lexer: Add operational tokens Signed-off-by: Ian Moffett --- include/cescal/token.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include') diff --git a/include/cescal/token.h b/include/cescal/token.h index 1f214bb..8757841 100644 --- a/include/cescal/token.h +++ b/include/cescal/token.h @@ -19,6 +19,11 @@ typedef enum { TT_COMMA, /* ',' */ TT_COLON, /* ':' */ TT_ARROW, /* '->' */ + TT_PLUS, /* '+' */ + TT_MINUS, /* '-' */ + TT_SLASH, /* '/' */ + TT_STAR, /* '*' */ + TT_EQUALS, /* '=' */ TT_DEFINE, /* '#define' */ TT_IFNDEF, /* '#ifndef' */ TT_IFDEF, /* '#ifdef' */ -- cgit v1.2.3