(line, text, spans)
| 4714 | function updateDoc(doc, change, markedSpans, estimateHeight) { |
| 4715 | function spansFor(n) {return markedSpans ? markedSpans[n] : null} |
| 4716 | function update(line, text, spans) { |
| 4717 | updateLine(line, text, spans, estimateHeight); |
| 4718 | signalLater(line, "change", line, change); |
| 4719 | } |
| 4720 | function linesFor(start, end) { |
| 4721 | var result = []; |
| 4722 | for (var i = start; i < end; ++i) |
no test coverage detected