Example #1
0
 public AddNode(IArithmeticNode left, IArithmeticNode right)
     : base(left, right, "+")
 {
 }
Example #2
0
 public AssignmentNode(string name, IArithmeticNode body)
 {
     Name = name;
     Body = body;
 }
Example #3
0
 protected OperatorNode(IArithmeticNode left, IArithmeticNode right, string symbol)
 {
     Left   = left;
     Right  = right;
     Symbol = symbol;
 }