restructure

This commit is contained in:
nub31
2025-06-12 23:37:28 +02:00
parent 7f6a825c01
commit bf4db69f86
73 changed files with 43 additions and 40 deletions

View File

@@ -0,0 +1,6 @@
namespace Nub.Lang.Frontend.Lexing;
public class IdentifierToken(SourceSpan span, string value) : Token(span)
{
public string Value { get; } = value;
}