(filePath: string, abortSignal?: AbortSignal)
| 721 | } |
| 722 | |
| 723 | override writeFile(filePath: string, abortSignal?: AbortSignal): WritableStream<Uint8Array> { |
| 724 | const hostPath = this.resolveHostPathForMounted(filePath); |
| 725 | if (hostPath) { |
| 726 | return super.writeFile(hostPath, abortSignal); |
| 727 | } |
| 728 | return this.writeFileViaExec(filePath, abortSignal); |
| 729 | } |
| 730 | |
| 731 | override async stat(filePath: string, abortSignal?: AbortSignal): Promise<FileStat> { |
| 732 | const hostPath = this.resolveHostPathForMounted(filePath); |
nothing calls this directly
no test coverage detected