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

14 lines
264 B
C#

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