(cm)
| 1645 | } |
| 1646 | |
| 1647 | function clearLineMeasurementCache(cm) { |
| 1648 | cm.display.externalMeasure = null; |
| 1649 | removeChildren(cm.display.lineMeasure); |
| 1650 | for (var i = 0; i < cm.display.view.length; i++) |
| 1651 | clearLineMeasurementCacheFor(cm.display.view[i]); |
| 1652 | } |
| 1653 | |
| 1654 | function clearCaches(cm) { |
| 1655 | clearLineMeasurementCache(cm); |
no test coverage detected