Exemple #1
0
 public BooleanOperation(BoolOperationType type, ArithmeticExpression a1, ArithmeticExpression a2)
 {
     this.type = type;
     this.a1   = a1;
     this.a2   = a2;
 }
Exemple #2
0
 public For(Assign var, ArithmeticExpression upto, Block bl)
 {
     this.var  = var;
     this.upto = upto;
     this.bl   = bl;
 }
Exemple #3
0
 public Assign(string s, ArithmeticExpression a)
 {
     this.s = s;
     this.a = a;
 }
Exemple #4
0
 public ArithmeticOperation(ArithOperationType type, ArithmeticExpression a1, ArithmeticExpression a2)
 {
     this.type = type;
     this.a1   = a1;
     this.a2   = a2;
 }