(lineView)
| 3859 | } |
| 3860 | |
| 3861 | function clearLineMeasurementCacheFor(lineView) { |
| 3862 | if (lineView.measure) { |
| 3863 | lineView.measure.cache = {} |
| 3864 | lineView.measure.heights = null |
| 3865 | if (lineView.rest) { |
| 3866 | for (var i = 0; i < lineView.rest.length; i++) { |
| 3867 | lineView.measure.caches[i] = {} |
| 3868 | } |
| 3869 | } |
| 3870 | } |
| 3871 | } |
| 3872 | |
| 3873 | function clearLineMeasurementCache(cm) { |
| 3874 | cm.display.externalMeasure = null |
no outgoing calls
no test coverage detected