restructure fs
This commit is contained in:
7
lang/Nub.Lang/Frontend/Lexing/LiteralToken.cs
Normal file
7
lang/Nub.Lang/Frontend/Lexing/LiteralToken.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Nub.Lang.Frontend.Lexing;
|
||||
|
||||
public class LiteralToken(Type type, string value) : Token
|
||||
{
|
||||
public Type Type { get; } = type;
|
||||
public string Value { get; } = value;
|
||||
}
|
||||
Reference in New Issue
Block a user