modifiers

This commit is contained in:
nub31
2025-05-16 20:46:38 +02:00
parent 2a4401bab6
commit 57ccd0a38a
4 changed files with 64 additions and 64 deletions

View File

@@ -0,0 +1,12 @@
namespace Nub.Lang.Frontend.Lexing;
public class ModifierToken(Modifier symbol) : Token
{
public Modifier Modifier { get; } = symbol;
}
public enum Modifier
{
Extern,
Global
}