Files
nub-lang/src/compiler/Nub.Lang/Frontend/Lexing/IdentifierToken.cs
nub31 43766f6d97 ...
2025-05-24 21:40:48 +02:00

6 lines
223 B
C#

namespace Nub.Lang.Frontend.Lexing;
public class IdentifierToken(SourceFile sourceFile, int startIndex, int endIndex, string value) : Token(sourceFile, startIndex, endIndex)
{
public string Value { get; } = value;
}