| 17 | } |
| 18 | |
| 19 | interface PendingChangeLine { |
| 20 | lineNo: number; |
| 21 | text: string; |
| 22 | } |
| 23 | |
| 24 | export function parseUnifiedPatch(text: string): SplitDiffFile[] | null { |
| 25 | const files: SplitDiffFile[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected