Exemplo n.º 1
0
 public JSAssignInt(JSIntVar lhs,JSInt rhs)
 {
     this.lhs = lhs;
     this.rhs = rhs;
 }
Exemplo n.º 2
0
 public JSIfInt(JSBool conditional, JSInt ifResult, JSInt elseResult)
 {
     this.conditional = conditional;
     this.ifResult = ifResult;
     this.elseResult = elseResult;
 }
Exemplo n.º 3
0
 public JSGreaterThan(JSInt i1, JSInt i2)
 {
     this.i1 = i1;
     this.i2 = i2;
 }
Exemplo n.º 4
0
 public JSPlus(JSInt i1, JSInt i2)
 {
     this.i1 = i1;
     this.i2 = i2;
 }