tlang-runtime-compiler/TLang.Parser/CharNode.cs

16 lines
222 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
using TLang.Lexer;
namespace TLang.Parser
{
public class CharNode : Node
{
public string Text {get;set;}
public CharNode(string text)
{
Text = text;
}
}
}