Suppose in jdb I am at the following spot in the code:
return 22;
-->}
How do I dump the value of the object (or primitive) that is going to be returned? It seems like a pain to have to store the return value in a local variable before returning it, just so that I can see what's going to be returned.
Effectively, I want to do in jdb what is described in the link for gdb: