6 lines
223 B
C#
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;
|
|
} |