| 669 | } |
| 670 | |
| 671 | void MIDebugSession::runToCursor() |
| 672 | { |
| 673 | if (IDocument* doc = ICore::self()->documentController()->activeDocument()) { |
| 674 | KTextEditor::Cursor cursor = doc->cursorPosition(); |
| 675 | if (cursor.isValid()) |
| 676 | runUntil(doc->url(), cursor.line() + 1); |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | void MIDebugSession::jumpToCursor() |
| 681 | { |
nothing calls this directly
no test coverage detected