maintenance

This commit is contained in:
nub31
2025-10-16 20:24:39 +02:00
parent 78f3cb88f2
commit a4e1c4954f
6 changed files with 32 additions and 19 deletions

View File

@@ -4,13 +4,24 @@ namespace NubLang.Syntax;
public enum Symbol
{
Func,
Return,
// Control
If,
Else,
While,
Break,
Continue,
Return,
Let,
Defer,
// Declaration
Func,
Struct,
// Modifier
Extern,
Export,
Colon,
DoubleColon,
OpenParen,
@@ -33,14 +44,8 @@ public enum Symbol
Minus,
Star,
ForwardSlash,
Struct,
Caret,
Ampersand,
Let,
Calls,
For,
In,
Extern,
Semi,
Percent,
LeftShift,
@@ -50,8 +55,6 @@ public enum Symbol
Or,
Module,
Import,
Export,
Defer,
At,
}