First pass with syscalls in the AST

This commit is contained in:
2024-12-01 22:18:09 -07:00
parent bce9a55721
commit 8132241eb3
6 changed files with 202 additions and 28 deletions

View File

@@ -413,6 +413,8 @@ impl Tokenizer {
"return" if next_ws!() => keyword!(Return),
"enum" if next_ws!() => keyword!(Enum),
"device" if next_ws!() => keyword!(Device),
"loop" if next_ws!() => keyword!(Loop),
"break" if next_ws!() => keyword!(Break),
// boolean literals
"true" if next_ws!() => {