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

Method jumpToCursor

plugins/debuggercommon/widgets/disassemblewidget.cpp:281–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281void DisassembleWidget::jumpToCursor()
282{
283 if (auto* const session = currentRunningSession()) {
284 const auto address = m_disassembleWindow->selectedAddress();
285 Q_ASSERT(!address.isEmpty());
286 session->jumpToMemoryAddress(address);
287 }
288}
289
290void DisassembleWidget::runToCursor()
291{

Callers

nothing calls this directly

Calls 4

currentRunningSessionFunction · 0.85
selectedAddressMethod · 0.80
jumpToMemoryAddressMethod · 0.80
isEmptyMethod · 0.45

Tested by

no test coverage detected