core: lexer: Add operational tokens

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-05-23 09:01:18 -04:00
parent 2ec8122a91
commit 5f72602471
3 changed files with 31 additions and 4 deletions
+5
View File
@@ -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' */