Exemple #1
0
 public ArithmeticOperation(ArithOperationType type, ArithmeticExpression a1, ArithmeticExpression a2)
 {
     this.type = type;
     this.a1   = a1;
     this.a2   = a2;
 }
 // Converts Arithmetic Operators to their Java Byte Code equivalent
 private string DefineArithOperator(ArithOperationType aop) => aop switch
 {