@Override public int precedence() { return operation.precedence(); }
public StatementType resultType() { return operation.resultType(); }
public StatementType leftType() { return operation.leftType(); }
public StatementType rightType() { return operation.rightType(); }
public Statement perform(DataContainer container) { return operation.perform(container, left, right); }