This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/src/Syntax/Tokenization/IdentifierToken.cs
nub31 bf7995e12c ...
2025-06-13 00:07:14 +02:00

6 lines
154 B
C#

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