예제 #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;
 }
예제 #2
0
 public BinaryExpression(VSC.TypeSystem.Resolver.BinaryOperatorType oper, Expression left, Expression right)
     : this(oper, left, right, left.Location)
 {
 }