Exemplo n.º 1
0
 public BinaryExpression(VSC.TypeSystem.Resolver.BinaryOperatorType oper, Expression left, Expression right, Location loc)
 {
     this.oper  = oper;
     this.left  = left;
     this.right = right;
     this.loc   = loc;
 }
Exemplo n.º 2
0
 public BinaryExpression(VSC.TypeSystem.Resolver.BinaryOperatorType oper, Expression left, Expression right)
     : this(oper, left, right, left.Location)
 {
 }