8 lines
261 B
C#
8 lines
261 B
C#
using Nub.Lang.Frontend.Diagnostics;
|
|
|
|
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;
|
|
} |