7 lines
204 B
C#
7 lines
204 B
C#
namespace Nub.Lang.Frontend.Parsing;
|
|
|
|
public class LiteralNode(string literal, Type type) : ExpressionNode
|
|
{
|
|
public string Literal { get; } = literal;
|
|
public Type LiteralType { get; } = type;
|
|
} |