This commit is contained in:
nub31
2025-09-16 16:02:08 +02:00
parent 46432d2f8e
commit c9e34ae7e2
8 changed files with 130 additions and 36 deletions

View File

@@ -68,6 +68,7 @@ public enum Symbol
Let,
Calls,
For,
In,
Extern,
Semi,
Percent,

View File

@@ -18,6 +18,7 @@ public sealed class Tokenizer
["let"] = Symbol.Let,
["calls"] = Symbol.Calls,
["for"] = Symbol.For,
["in"] = Symbol.In,
["extern"] = Symbol.Extern,
["module"] = Symbol.Module,
["export"] = Symbol.Export,