* enable UI updates from this client and resume tag parsing on the server.
()
| 3209 | * enable UI updates from this client and resume tag parsing on the server. |
| 3210 | */ |
| 3211 | public activate(): void { |
| 3212 | this.model.activate(); |
| 3213 | void this.resumeParsing().catch(logAndReturn.undefined); |
| 3214 | } |
| 3215 | |
| 3216 | public async selectionChanged(selection: Range): Promise<void> { |
| 3217 | return this.languageClient.sendNotification(DidChangeTextEditorSelectionNotification, selection); |
nothing calls this directly
no test coverage detected