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

16 lines
223 B
C#
Raw Normal View History

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