| 755 | } |
| 756 | |
| 757 | void MIDebugSession::jumpTo(const QUrl& url, int line) |
| 758 | { |
| 759 | if (debuggerStateIsOn(s_dbgNotStarted|s_shuttingDown)) |
| 760 | return; |
| 761 | |
| 762 | if (url.isValid()) { |
| 763 | addCommand(NonMI, QStringLiteral("tbreak %1:%2").arg(url.toLocalFile()).arg(line)); |
| 764 | addCommand(NonMI, QStringLiteral("jump %1:%2").arg(url.toLocalFile()).arg(line)); |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | void MIDebugSession::jumpToMemoryAddress(const QString& address) |
| 769 | { |
nothing calls this directly
no test coverage detected