(cm, line)
| 1028 | } |
| 1029 | |
| 1030 | function clearCachedMeasurement(cm, line) { |
| 1031 | var exists = findCachedMeasurement(cm, line); |
| 1032 | if (exists) exists.text = exists.measure = exists.markedSpans = null; |
| 1033 | } |
| 1034 | |
| 1035 | function measureLine(cm, line) { |
| 1036 | // First look in the cache |
no test coverage detected