(cm, time)
| 854 | // HIGHLIGHT WORKER |
| 855 | |
| 856 | function startWorker(cm, time) { |
| 857 | if (cm.doc.mode.startState && cm.doc.frontier < cm.display.showingTo) |
| 858 | cm.state.highlight.set(time, bind(highlightWorker, cm)); |
| 859 | } |
| 860 | |
| 861 | function highlightWorker(cm) { |
| 862 | var doc = cm.doc; |
no test coverage detected