(_connection: IConnection)
| 2911 | } |
| 2912 | |
| 2913 | private initializeFeatures(_connection: IConnection): void { |
| 2914 | let documentSelector = this._clientOptions.documentSelector; |
| 2915 | for (let feature of this._features) { |
| 2916 | feature.initialize(this._capabilities, documentSelector); |
| 2917 | } |
| 2918 | } |
| 2919 | |
| 2920 | private handleRegistrationRequest(params: RegistrationParams): Thenable<void> { |
| 2921 | return new Promise<void>((resolve, reject) => { |
nothing calls this directly
no test coverage detected