(filePath: string)
| 87 | |
| 88 | // Process each hunk |
| 89 | const readFile = async (filePath: string): Promise<string> => { |
| 90 | const absolutePath = path.resolve(task.cwd, filePath) |
| 91 | return await fs.readFile(absolutePath, "utf8") |
| 92 | } |
| 93 | |
| 94 | let changes: ApplyPatchFileChange[] |
| 95 | try { |
no outgoing calls