(r, path)
| 295 | dependencies: state.dependencyGraph, |
| 296 | async listTree() { return tree.tree; }, |
| 297 | async readFile(r, path) { return await fetchFileCached(r, path); }, |
| 298 | async getVersionString(r) { |
| 299 | const sha = await getCommitShaForRef(r); |
| 300 | const shortSha = sha.slice(0,7); |
nothing calls this directly
no test coverage detected