| 841 | } |
| 842 | |
| 843 | void TelnetDebugger::debugStepOut() |
| 844 | { |
| 845 | if (mState != Connected) |
| 846 | return; |
| 847 | |
| 848 | setBreakOnNextStatement( false ); |
| 849 | mStackPopBreakIndex = gEvalState.getStackDepth() - 1; |
| 850 | if ( mStackPopBreakIndex == 0 ) |
| 851 | mStackPopBreakIndex = -1; |
| 852 | mProgramPaused = false; |
| 853 | send("RUNNING\r\n"); |
| 854 | } |
| 855 | |
| 856 | void TelnetDebugger::evaluateExpression(const char *tag, S32 frame, const char *evalBuffer) |
| 857 | { |
nothing calls this directly
no test coverage detected