()
| 15 | private readonly outputChannel: OutputChannel; |
| 16 | |
| 17 | constructor() { |
| 18 | this.outputChannel = window.createOutputChannel('R Language Server'); |
| 19 | this.config = workspace.getConfiguration('r'); |
| 20 | void this.startLanguageService(); |
| 21 | } |
| 22 | |
| 23 | dispose(): Thenable<void> { |
| 24 | return this.stopLanguageService(); |
nothing calls this directly
no test coverage detected