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

Method sessionsThatVerified

src/plugins/debugger/debug.h:225–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223 }
224
225 dap::array<dap::string> sessionsThatVerified()
226 {
227 dap::array<dap::string> sessionIds;
228
229 auto it = sessionData.begin();
230 for (; it != sessionData.end(); ++it) {
231 if (it->second.verified) {
232 sessionIds.push_back(it->first);
233 }
234 }
235 return sessionIds;
236 }
237
238 dap::optional<dapNumber> getIdFromAdapter(dap::string &sessionId)
239 {

Callers 1

convertToIBreakpointFunction · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected