(view: EditorView)
| 22 | decorations: DecorationSet; |
| 23 | |
| 24 | constructor(view: EditorView) { |
| 25 | this.decorations = this.buildDecorations(view); |
| 26 | } |
| 27 | |
| 28 | update(update: ViewUpdate): void { |
| 29 | if (update.docChanged || update.viewportChanged || update.transactions.length > 0) { |
nothing calls this directly
no test coverage detected