()
| 255 | } |
| 256 | |
| 257 | public removeAllBreakpoints(): Promise<any> { |
| 258 | const removeBreakpointPromises = []; |
| 259 | for (const uri of Object.keys(this.vmBps)) { |
| 260 | removeBreakpointPromises.push(this.removeBreakpointsAtUri(uri)); |
| 261 | } |
| 262 | return Promise.all(removeBreakpointPromises); |
| 263 | } |
| 264 | |
| 265 | public async setBreakpoints(logger: Logger, uri: string, breakpoints: DebugProtocol.SourceBreakpoint[]): Promise<Array<VMBreakpoint | undefined>> { |
| 266 | // Remove all current bps. |
no test coverage detected