(start, end)
| 1799 | return state; |
| 1800 | } |
| 1801 | function highlightLines(start, end) { |
| 1802 | var state = getStateBefore(start); |
| 1803 | doc.iter(start, end, function(line) { |
| 1804 | line.highlight(mode, state, options.tabSize); |
| 1805 | line.stateAfter = copyState(mode, state); |
| 1806 | }); |
| 1807 | } |
| 1808 | function highlightWorker() { |
| 1809 | var end = +new Date + options.workTime; |
| 1810 | var foundWork = work.length; |
no test coverage detected