コード例 #1
0
 public BinaryOperation(int left, Operation op, SimpleExpression right)
 {
     Left      = new Int32Const(left);
     Operation = op;
     Right     = right;
 }
コード例 #2
0
 public BinaryOperation(string left, Operation op, int right)
 {
     Left      = new Identifier(left);
     Operation = op;
     Right     = new Int32Const(right);
 }
コード例 #3
0
 public BinaryOperation(SimpleExpression left, Operation op, int right)
 {
     Left      = left;
     Operation = op;
     Right     = new Int32Const(right);
 }