(targetPath: string, basePath: string)
| 311 | } |
| 312 | |
| 313 | override normalizePath(targetPath: string, basePath: string): string { |
| 314 | return this.delegate.normalizePath(targetPath, basePath); |
| 315 | } |
| 316 | |
| 317 | override resolvePath(filePath: string): Promise<string> { |
| 318 | return this.delegate.resolvePath(filePath); |
nothing calls this directly
no test coverage detected