(cm, time)
| 906 | // HIGHLIGHT WORKER |
| 907 | |
| 908 | function startWorker(cm, time) { |
| 909 | if (cm.doc.mode.startState && cm.doc.frontier < cm.display.showingTo) |
| 910 | cm.state.highlight.set(time, bind(highlightWorker, cm)); |
| 911 | } |
| 912 | |
| 913 | function highlightWorker(cm) { |
| 914 | var doc = cm.doc; |
no test coverage detected