(view: EditorView)
| 308 | pendingDirtyRanges: DocRange[] = []; |
| 309 | |
| 310 | constructor(view: EditorView) { |
| 311 | this.decorations = Decoration.none; |
| 312 | this.visibleRanges = normalizeRanges(view.visibleRanges); |
| 313 | this.scheduleVisibleRanges(view); |
| 314 | } |
| 315 | |
| 316 | update(update: ViewUpdate): void { |
| 317 | if (update.docChanged || update.viewportChanged || update.geometryChanged) { |
nothing calls this directly
no test coverage detected