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

14 lines
278 B
C#
Raw Normal View History

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