(private wslDistroName: string | undefined)
| 24 | */ |
| 25 | export class WindowsToWSLConverter implements IDEPathConverter { |
| 26 | constructor(private wslDistroName: string | undefined) {} |
| 27 | |
| 28 | toLocalPath(windowsPath: string): string { |
| 29 | if (!windowsPath) return windowsPath |
nothing calls this directly
no outgoing calls
no test coverage detected