(line, text, spans)
| 5927 | function updateDoc(doc, change, markedSpans, estimateHeight) { |
| 5928 | function spansFor(n) {return markedSpans ? markedSpans[n] : null;} |
| 5929 | function update(line, text, spans) { |
| 5930 | updateLine(line, text, spans, estimateHeight); |
| 5931 | signalLater(line, "change", line, change); |
| 5932 | } |
| 5933 | |
| 5934 | var from = change.from, to = change.to, text = change.text; |
| 5935 | var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line); |
no test coverage detected
searching dependent graphs…