(lineView)
| 2540 | } |
| 2541 | |
| 2542 | function clearLineMeasurementCacheFor(lineView) { |
| 2543 | if (lineView.measure) { |
| 2544 | lineView.measure.cache = {}; |
| 2545 | lineView.measure.heights = null; |
| 2546 | if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++) |
| 2547 | { lineView.measure.caches[i] = {}; } } |
| 2548 | } |
| 2549 | } |
| 2550 | |
| 2551 | function clearLineMeasurementCache(cm) { |
| 2552 | cm.display.externalMeasure = null; |
no outgoing calls
no test coverage detected