| 830 | } |
| 831 | |
| 832 | void TelnetDebugger::debugStepOver() |
| 833 | { |
| 834 | if (mState != Connected) |
| 835 | return; |
| 836 | |
| 837 | setBreakOnNextStatement( true ); |
| 838 | mStackPopBreakIndex = gEvalState.getStackDepth(); |
| 839 | mProgramPaused = false; |
| 840 | send("RUNNING\r\n"); |
| 841 | } |
| 842 | |
| 843 | void TelnetDebugger::debugStepOut() |
| 844 | { |
nothing calls this directly
no test coverage detected