| 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 | { |
no test coverage detected