frontend: lexer: Add token for tilde

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-03-21 16:24:20 -04:00
parent 046e49c7b3
commit c717e80636
3 changed files with 6 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ typedef enum {
TT_CC, /* '.cc' */
TT_LD, /* '.ld' */
TT_COLON, /* ':' */
TT_TILDE, /* '~' */
TT_COLONDUB, /* '::' */
} tt_t;