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

6 lines
154 B
C#

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