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

14 lines
276 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
namespace TLang.Parser
{
public class RightShiftNode : Node
{
2023-07-29 00:11:09 +00:00
public Node Left {get;set;}
public Node Right {get;set;}
2023-07-27 03:31:32 +00:00
public RightShiftNode(Node left, Node right)
{
Left = left;
Right = right;
}
}
}