(filter?: string)
| 291 | } |
| 292 | |
| 293 | waitForSource(filter?: string): Promise<Dap.LoadedSourceEventParams> { |
| 294 | return this.dap.once('loadedSource', event => { |
| 295 | return filter === undefined || forceForwardSlashes(event.source.path || '').includes(filter); |
| 296 | }); |
| 297 | } |
| 298 | |
| 299 | workspacePath(relative: string): string { |
| 300 | return this._root.workspacePath(relative); |
nothing calls this directly
no test coverage detected