(rel: string)
| 88 | constructor(private cwd: string) {} |
| 89 | |
| 90 | private abs(rel: string): string { return path.join(this.cwd, rel); } |
| 91 | |
| 92 | /** Current best-known content of a file: staged > committed > disk. */ |
| 93 | private async currentContent(rel: string): Promise<string | null> { |
no outgoing calls
no test coverage detected