MCPcopy Create free account
hub / github.com/KDE/kdevelop / runUntil

Method runUntil

plugins/debuggercommon/midebugsession.cpp:731–744  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

729}
730
731void MIDebugSession::runUntil(const QUrl& url, int line)
732{
733 if (debuggerStateIsOn(s_dbgNotStarted|s_shuttingDown))
734 return;
735
736 if (!url.isValid()) {
737 addCommand(ExecUntil, QString::number(line),
738 CmdMaybeStartsRunning | CmdTemporaryRun);
739 } else {
740 addCommand(ExecUntil,
741 QStringLiteral("%1:%2").arg(url.toLocalFile()).arg(line),
742 CmdMaybeStartsRunning | CmdTemporaryRun);
743 }
744}
745
746void MIDebugSession::runUntil(const QString& address)
747{

Callers 2

testQListContainerMethod · 0.80
runToCursorMethod · 0.80

Calls 3

toLocalFileMethod · 0.80
isValidMethod · 0.45
isEmptyMethod · 0.45

Tested by 1

testQListContainerMethod · 0.64