(hist, change)
| 5453 | } |
| 5454 | |
| 5455 | function rebaseHist(hist, change) { |
| 5456 | var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1; |
| 5457 | rebaseHistArray(hist.done, from, to, diff); |
| 5458 | rebaseHistArray(hist.undone, from, to, diff); |
| 5459 | } |
| 5460 | |
| 5461 | // EVENT OPERATORS |
| 5462 |
no test coverage detected