I want to do some async work to compute the initialization options and client capabilities.
Since BaseLanguageClient#initialize is already async, I'd like to make these calls also async:
|
capabilities: this.computeClientCapabilities(), |
|
initializationOptions: Is.func(initOption) ? initOption() : initOption, |
|
this.fillInitializeParams(initParams); |
I want to do some async work to compute the initialization options and client capabilities.
Since
BaseLanguageClient#initializeis already async, I'd like to make these calls also async:vscode-languageserver-node/client/src/common/client.ts
Lines 1227 to 1228 in f2ff7d5
vscode-languageserver-node/client/src/common/client.ts
Line 1232 in f2ff7d5