(cm)
| 1661 | } |
| 1662 | |
| 1663 | function clearLineMeasurementCache(cm) { |
| 1664 | cm.display.externalMeasure = null; |
| 1665 | removeChildren(cm.display.lineMeasure); |
| 1666 | for (var i = 0; i < cm.display.view.length; i++) |
| 1667 | clearLineMeasurementCacheFor(cm.display.view[i]); |
| 1668 | } |
| 1669 | |
| 1670 | function clearCaches(cm) { |
| 1671 | clearLineMeasurementCache(cm); |
no test coverage detected
searching dependent graphs…