({
ids,
xhr,
}: Dap.SetCustomBreakpointsParams)
| 586 | } |
| 587 | |
| 588 | async setCustomBreakpoints({ |
| 589 | ids, |
| 590 | xhr, |
| 591 | }: Dap.SetCustomBreakpointsParams): Promise<Dap.SetCustomBreakpointsResult> { |
| 592 | await this._thread?.updateCustomBreakpoints(xhr, ids); |
| 593 | this._customBreakpoints = ids; |
| 594 | this._xhrBreakpoints = xhr; |
| 595 | return {}; |
| 596 | } |
| 597 | |
| 598 | async _toggleSkipFileStatus( |
| 599 | params: Dap.ToggleSkipFileStatusParams, |
no test coverage detected