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

Method supported

src/plugins/debugger/debug.h:384–400  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

382 }
383
384 bool supported()
385 {
386 if (!data) {
387 return true;
388 }
389 if (logMessage && !data.value().supportsLogPoints) {
390 return false;
391 }
392 if (condition && !data.value().supportsConditionalBreakpoints) {
393 return false;
394 }
395 if (hitCondition && !data.value().supportsHitConditionalBreakpoints) {
396 return false;
397 }
398
399 return true;
400 }
401
402 void setSessionData(dap::string &sessionId, dap::optional<IBreakpointSessionData> data)
403 {

Callers 1

convertToIBreakpointFunction · 0.80

Calls 1

valueMethod · 0.45

Tested by

no test coverage detected