(hist, change)
| 4804 | } |
| 4805 | |
| 4806 | function rebaseHist(hist, change) { |
| 4807 | var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1; |
| 4808 | rebaseHistArray(hist.done, from, to, diff); |
| 4809 | rebaseHistArray(hist.undone, from, to, diff); |
| 4810 | } |
| 4811 | |
| 4812 | // EVENT OPERATORS |
| 4813 |
no test coverage detected