(filter?: string)
| 205 | } |
| 206 | |
| 207 | waitForSource(filter?: string): Promise<Dap.LoadedSourceEventParams> { |
| 208 | return this.dap.once('loadedSource', event => { |
| 209 | return filter === undefined || (event.source.path || '').indexOf(filter) !== -1; |
| 210 | }); |
| 211 | } |
| 212 | |
| 213 | completeUrl(relativePath: string): string { |
| 214 | return this._root.completeUrl(relativePath); |
no test coverage detected