(path: string, newContent: string)
| 304 | } |
| 305 | |
| 306 | async diffContent(path: string, newContent: string): Promise<string> { |
| 307 | return diffContent(await this.readFile(path), newContent, path, path); |
| 308 | } |
| 309 | |
| 310 | async createArchive( |
| 311 | path: string, |
nothing calls this directly
no test coverage detected