You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from LanguageClient@8.0.1, the BaseLanguageClient.start() has been changed to return a promise instead of Dispose, and onReady() is removed, they're breaking changes to vscode-java.
Just for reference, we're likely going to need to wait on Theia to support things like TypeHierarchyItem. Currently if we run the extension there, it will fail in the vscode-langaugeclient initialization code. See #2377 .
Starting from LanguageClient@8.0.1, the
BaseLanguageClient.start()
has been changed to return a promise instead of Dispose, andonReady()
is removed, they're breaking changes to vscode-java.https://github.com/microsoft/vscode-languageserver-node/blob/release/client/8.0.1/client/src/common/client.ts#L933
We need to make changes to the client code in vscode-java to support the new behavior.
vscode-java/src/standardLanguageClient.ts
Line 105 in 97b29fa
The text was updated successfully, but these errors were encountered: