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/compiler/Nub.Lang/Frontend/Lexing/IdentifierToken.cs
nub31 fac2c95d05 ...
2025-05-25 01:03:15 +02:00

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;
}