(cm)
| 2767 | } |
| 2768 | |
| 2769 | function clearLineMeasurementCache(cm) { |
| 2770 | cm.display.externalMeasure = null; |
| 2771 | removeChildren(cm.display.lineMeasure); |
| 2772 | for (var i = 0; i < cm.display.view.length; i++) |
| 2773 | clearLineMeasurementCacheFor(cm.display.view[i]); |
| 2774 | } |
| 2775 | |
| 2776 | function clearCaches(cm) { |
| 2777 | clearLineMeasurementCache(cm); |
no test coverage detected