(base: Uri, ...pathSegments: string[])
| 293 | }, |
| 294 | |
| 295 | joinPath(base: Uri, ...pathSegments: string[]): Uri { |
| 296 | const baseUri = URI.parse(base.toString(), 'file'); |
| 297 | return createVSCodeUri(baseUri.joinPath(...pathSegments)); |
| 298 | }, |
| 299 | }; |
| 300 | |
| 301 | // VS Code Location class |
nothing calls this directly
no test coverage detected