namespace Syntax.Tokenization; public class IdentifierToken(SourceSpan span, string value) : Token(span) { public string Value { get; } = value; }