(filePath: string, abortSignal?: AbortSignal)
| 729 | } |
| 730 | |
| 731 | override async stat(filePath: string, abortSignal?: AbortSignal): Promise<FileStat> { |
| 732 | const hostPath = this.resolveHostPathForMounted(filePath); |
| 733 | if (hostPath) { |
| 734 | return super.stat(hostPath, abortSignal); |
| 735 | } |
| 736 | return this.statViaExec(filePath, abortSignal); |
| 737 | } |
| 738 | |
| 739 | override async ensureDir(dirPath: string, abortSignal?: AbortSignal): Promise<void> { |
| 740 | const hostPath = this.resolveHostPathForMounted(dirPath); |
nothing calls this directly
no test coverage detected