restructure
This commit is contained in:
6
src/Nub.Lang/Frontend/Lexing/IdentifierToken.cs
Normal file
6
src/Nub.Lang/Frontend/Lexing/IdentifierToken.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Nub.Lang.Frontend.Lexing;
|
||||
|
||||
public class IdentifierToken(SourceSpan span, string value) : Token(span)
|
||||
{
|
||||
public string Value { get; } = value;
|
||||
}
|
||||
Reference in New Issue
Block a user