(line, text, spans)
| 23 | export function updateDoc(doc, change, markedSpans, estimateHeight) { |
| 24 | function spansFor(n) {return markedSpans ? markedSpans[n] : null} |
| 25 | function update(line, text, spans) { |
| 26 | updateLine(line, text, spans, estimateHeight) |
| 27 | signalLater(line, "change", line, change) |
| 28 | } |
| 29 | function linesFor(start, end) { |
| 30 | let result = [] |
| 31 | for (let i = start; i < end; ++i) |
no test coverage detected