コード例 #1
0
        public AssignmentOperatorConstruct(ILvalueConstruct lhs, IRvalueConstruct rhs) {
            Contract.Requires(lhs != null);
            Contract.Requires(rhs != null);

            Lhs = lhs;
            Rhs = rhs;
        }
コード例 #2
0
        public FunctionReturnConstruct(IRvalueConstruct rvalue) {
            Contract.Requires(rvalue != null);

            Rvalue = rvalue;
        }
コード例 #3
0
 public ExponentConstruct(IRvalueConstruct operand1, IRvalueConstruct operand2)
 {
     Operand1 = operand1;
     Operand2 = operand2;
 }
コード例 #4
0
 public ModuloConstruct(IRvalueConstruct operand1, IRvalueConstruct operand2)
 {
     Operand1 = operand1;
     Operand2 = operand2;
 }
コード例 #5
0
 public DivisionConstruct(IRvalueConstruct operand1, IRvalueConstruct operand2)
 {
     Operand1 = operand1;
     Operand2 = operand2;
 }
コード例 #6
0
 public SubtractionConstruct(IRvalueConstruct operand1, IRvalueConstruct operand2)
 {
     Operand1 = operand1;
     Operand2 = operand2;
 }
コード例 #7
0
 public MultiplicationConstruct(IRvalueConstruct operand1, IRvalueConstruct operand2)
 {
     Operand1 = operand1;
     Operand2 = operand2;
 }
コード例 #8
0
 public AdditionConstruct(IRvalueConstruct operand1, IRvalueConstruct operand2) {
     Operand1 = operand1;
     Operand2 = operand2;
 }