MCPcopy Create free account
hub / github.com/Codeya-IDE/deepin-ide / stepInTargets

Method stepInTargets

src/plugins/debugger/dap/debugsession.cpp:285–297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

283}
284
285dap::optional<StepInTargetsResponse> DebugSession::stepInTargets(integer frameId)
286{
287 if (!raw)
288 return undefined;
289
290 dap::StepInTargetsRequest request;
291 request.frameId = frameId;
292 auto response = raw->stepInTargets(request);
293 if (response.valid())
294 return response.get().response;
295
296 return undefined;
297}
298
299dap::optional<CancelResponse> DebugSession::cancel(string &progressId)
300{

Callers

nothing calls this directly

Calls 2

validMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected