| 678 | } |
| 679 | |
| 680 | void MIDebugSession::jumpToCursor() |
| 681 | { |
| 682 | if (IDocument* doc = ICore::self()->documentController()->activeDocument()) { |
| 683 | KTextEditor::Cursor cursor = doc->cursorPosition(); |
| 684 | if (cursor.isValid()) |
| 685 | jumpTo(doc->url(), cursor.line() + 1); |
| 686 | } |
| 687 | } |
| 688 | |
| 689 | void MIDebugSession::stepOver() |
| 690 | { |
nothing calls this directly
no test coverage detected