(filePath: string, abortSignal?: AbortSignal)
| 110 | } |
| 111 | |
| 112 | override stat(filePath: string, abortSignal?: AbortSignal): ReturnType<LocalRuntime["stat"]> { |
| 113 | return super.stat(this.toLocalPath(filePath), abortSignal); |
| 114 | } |
| 115 | |
| 116 | override readFile( |
| 117 | filePath: string, |
nothing calls this directly
no test coverage detected