(path: string)
| 316 | return this.adapterForPath(path).writeToPath(path, content, binary); |
| 317 | } |
| 318 | public parentPathForPath (path: string) { |
| 319 | return this.adapterForPath(path).parentPathForPath(path); |
| 320 | } |
| 321 | |
| 322 | public async readPathCache (path: string) { |
| 323 | const pathCache = await this.adapterForPath(path).readPathCache(path); |
nothing calls this directly
no test coverage detected