(cm, from, to, lendiff)
| 1461 | } |
| 1462 | |
| 1463 | function regChange(cm, from, to, lendiff) { |
| 1464 | if (from == null) from = cm.doc.first; |
| 1465 | if (to == null) to = cm.doc.first + cm.doc.size; |
| 1466 | cm.curOp.changes.push({from: from, to: to, diff: lendiff}); |
| 1467 | } |
| 1468 | |
| 1469 | // INPUT HANDLING |
| 1470 |
no outgoing calls
no test coverage detected