mv.visitInsn(Opcodes.POP);
}
// ensure we have only increased the stack by the return value size
if (compileContext.getStackCount() != currentStack + expected) {
throw new CompileException("MethodExpression.compile : invalid stack height " + compileContext.getStackCount() + " expecting " + (currentStack + expected));
}
// no need to update max stack since compiling the recipient or arguments will
// have done so (and there will be no change if there was no such compile call)
}