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