| 230 | } |
| 231 | |
| 232 | Promise<SetDataBreakpointsRequest> RawDebugSession::setDataBreakpoints(const SetDataBreakpointsRequest &request) |
| 233 | { |
| 234 | if (_capabilities.supportsDataBreakpoints) { |
| 235 | return send(request); |
| 236 | } |
| 237 | qInfo() << "supportsDataBreakpoints not supported"; |
| 238 | return {}; |
| 239 | } |
| 240 | |
| 241 | Promise<SetExceptionBreakpointsRequest> RawDebugSession::setExceptionBreakpoints( |
| 242 | const SetExceptionBreakpointsRequest &request) |