()
| 187 | } |
| 188 | |
| 189 | defaultExecutionContext(): ExecutionContext | undefined { |
| 190 | for (const context of this._executionContexts.values()) { |
| 191 | if (context.isDefault()) return context; |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | public async resume(): Promise<Dap.ContinueResult | Dap.Error> { |
| 196 | this._sourceContainer.clearDisabledSourceMaps(); |
no test coverage detected