Debugging Functions

The debugger does not stop after executing the last statement in a function, before returning. As a result, it is impossible to examine anything accomplished by the last statement. You lose the entire function context! This is probably why there is no “Step to Return” feature that lets you break before returning from the current function call. -jp