(hunk, mine, their)
| 1350 | } |
| 1351 | |
| 1352 | function conflict(hunk, mine, their) { |
| 1353 | hunk.conflict = true; |
| 1354 | hunk.lines.push({ |
| 1355 | conflict: true, |
| 1356 | mine: mine, |
| 1357 | theirs: their |
| 1358 | }); |
| 1359 | } |
| 1360 | |
| 1361 | function insertLeading(hunk, insert, their) { |
| 1362 | while (insert.offset < their.offset && insert.index < insert.lines.length) { |
no outgoing calls
no test coverage detected