frontend: lexer: Create identifier token for names

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-03-21 10:16:43 -04:00
parent 0dc25fe685
commit ccf717c6a3
2 changed files with 64 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ struct token {
tt_t type;
union {
char c;
char *s;
};
};