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

14 lines
262 B
C#

namespace TLang.Parser
{
public class LOrNode : Node
{
public Node Left {get;set;}
public Node Right {get;set;}
public LOrNode(Node left, Node right)
{
Left = left;
Right = right;
}
}
}