Module system

This commit is contained in:
nub31
2025-09-11 23:03:44 +02:00
parent 9c2975d45f
commit 0e442a8c4a
15 changed files with 265 additions and 167 deletions

View File

@@ -41,6 +41,7 @@ public enum Symbol
Break,
Continue,
Colon,
DoubleColon,
OpenParen,
CloseParen,
OpenBrace,

View File

@@ -35,6 +35,7 @@ public sealed class Tokenizer
[['>', '>']] = Symbol.RightShift,
[['&', '&']] = Symbol.And,
[['|', '|']] = Symbol.Or,
[[':', ':']] = Symbol.DoubleColon,
[[':']] = Symbol.Colon,
[['(']] = Symbol.OpenParen,
[[')']] = Symbol.CloseParen,