(cm)
| 2166 | // Count the number of lines in the view whose DOM representation is |
| 2167 | // out of date (or nonexistent). |
| 2168 | function countDirtyView(cm) { |
| 2169 | var view = cm.display.view, dirty = 0; |
| 2170 | for (var i = 0; i < view.length; i++) { |
| 2171 | var lineView = view[i]; |
| 2172 | if (!lineView.hidden && (!lineView.node || lineView.changes)) ++dirty; |
| 2173 | } |
| 2174 | return dirty; |
| 2175 | } |
| 2176 | |
| 2177 | // INPUT HANDLING |
| 2178 |
no outgoing calls
no test coverage detected