(patchText: string)
| 515 | |
| 516 | // Main patch application function |
| 517 | export async function applyPatch(patchText: string): Promise<AffectedPaths> { |
| 518 | const { hunks } = parsePatch(patchText) |
| 519 | return applyHunksToFiles(hunks) |
| 520 | } |
| 521 | |
| 522 | // Async version of maybeParseApplyPatchVerified |
| 523 | export async function maybeParseApplyPatchVerified( |
nothing calls this directly
no test coverage detected