Exemplo n.º 1
0
 public ArthimetricExpressionNode(Location location, IExpressionNode left, ArthimetricOperator opr, IExpressionNode right)
     : base(location, NodeType.ARTHIMETRIC_EXPRESSION)
 {
     this.Left     = left;
     this.Operator = opr;
     this.Right    = right;
 }
Exemplo n.º 2
0
 public ArthimetricExpressionNode(Location location, IExpressionNode left, ArthimetricOperator op, IExpressionNode right)
     : base(location, NodeType.ArthimetricExpression)
 {
     this.Left     = left;
     this.Operator = op;
     this.Right    = right;
 }