using TLang.Lexer;
namespace TLang.Parser
{
public class CharNode : Node
public string Text {get;set;}
public CharNode(string text)
Text = text;
}