(filePath: string, abortSignal?: AbortSignal)
| 713 | } |
| 714 | |
| 715 | override readFile(filePath: string, abortSignal?: AbortSignal): ReadableStream<Uint8Array> { |
| 716 | const hostPath = this.resolveHostPathForMounted(filePath); |
| 717 | if (hostPath) { |
| 718 | return super.readFile(hostPath, abortSignal); |
| 719 | } |
| 720 | return this.readFileViaExec(filePath, abortSignal); |
| 721 | } |
| 722 | |
| 723 | override writeFile(filePath: string, abortSignal?: AbortSignal): WritableStream<Uint8Array> { |
| 724 | const hostPath = this.resolveHostPathForMounted(filePath); |
nothing calls this directly
no test coverage detected