(fileContent: string, edit: FileEdit)
| 134 | } |
| 135 | |
| 136 | function normalizeEdit(fileContent: string, edit: FileEdit): FileEdit { |
| 137 | const actualOld = findActualString(fileContent, edit.old_string) || edit.old_string; |
| 138 | return { ...edit, old_string: actualOld }; |
| 139 | } |
no test coverage detected