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

Method continueDbg

src/plugins/debugger/dap/rawdebugsession.cpp:133–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133Promise<ContinueRequest> RawDebugSession::continueDbg(const ContinueRequest &request)
134{
135 auto response = send(request);
136 response.wait();
137 auto responseBody = response.get().response;
138 if (responseBody.allThreadsContinued.has_value()) {
139 allThreadsContinued = responseBody.allThreadsContinued.value();
140 }
141 // fire event.
142
143 return response;
144}
145
146Promise<PauseRequest> RawDebugSession::pause(const PauseRequest &request)
147{

Callers

nothing calls this directly

Calls 4

has_valueMethod · 0.80
waitMethod · 0.45
getMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected