lexer: Add token for 'loop' keyword

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-02-17 01:10:48 -05:00
parent 271c9750ea
commit aae74f06ed
3 changed files with 9 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ static const char *toktab[] = {
[TT_EXTERN] = qtok(".extern"),
[TT_PUB] = qtok(".pub"),
[TT_RETURN] = qtok("return"),
[TT_LOOP] = qtok("loop"),
[TT_VOID] = qtok("void"),
[TT_U8] = qtok("u8"),
[TT_U16] = qtok("u16"),