Beispiel #1
0
 @Override
 public int precedence() {
   return operation.precedence();
 }
Beispiel #2
0
 public StatementType resultType() {
   return operation.resultType();
 }
Beispiel #3
0
 public StatementType leftType() {
   return operation.leftType();
 }
Beispiel #4
0
 public StatementType rightType() {
   return operation.rightType();
 }
Beispiel #5
0
 public Statement perform(DataContainer container) {
   return operation.perform(container, left, right);
 }