return val;
}
@Override
public BytecodeValue visit(BinOp binOp) {
Operand l = binOp.getL();
Operand r = binOp.getR();
String op = binOp.getOp();
BytecodeValue left = l.accept(opVisitor);
BytecodeValue right = r.accept(opVisitor);
return left.doInvoke(right, op);
}