(
params: Dap.ToggleSkipFileStatusParams,
)
| 596 | } |
| 597 | |
| 598 | async _toggleSkipFileStatus( |
| 599 | params: Dap.ToggleSkipFileStatusParams, |
| 600 | ): Promise<Dap.ToggleSkipFileStatusResult | Dap.Error> { |
| 601 | await this._services.get<ScriptSkipper>(IScriptSkipper).toggleSkippingFile(params); |
| 602 | await this._refreshStackTrace(); |
| 603 | return {}; |
| 604 | } |
| 605 | |
| 606 | async _prettyPrintSource( |
| 607 | params: Dap.PrettyPrintSourceParams, |
no test coverage detected