(path: string)
| 137 | return this.adapterForPath(path).resourcePathForPath(path); |
| 138 | } |
| 139 | public parentPathForPath (path: string) { |
| 140 | |
| 141 | return this.adapterForPath(path).parentPathForPath(path); |
| 142 | } |
| 143 | |
| 144 | public async createFileCache (path: string) { |
| 145 | const file = await this.getFile(path); |
nothing calls this directly
no test coverage detected