Roland Grunberg
Roland Grunberg
Are you including the entire product when you include it as a library ? It could be some issue with how everything is being packaged, but I can't tell from...
The bundle that's used is `ws=cocoa`, `os=macosx`, `arch=x86_64` but going by your detected settings, you have `arch=aarch64`, and we don't seem to currently provide that. It's available upstream at https://github.com/eclipse-equinox/equinox/tree/master/bundles/org.eclipse.equinox.launcher.cocoa.macosx.aarch64...
Perhaps Eclipse is able to match against the `cocoa.macosx.x86_64` platform-specific bundles. We definitely don't ship the `aarch64` one. I did read that with Rosetta, it should be possible to run...
I see this as well. It seems to be the behaviour of the Fernflower decompiler as well as our [previous disassembler](https://github.com/eclipse-jdtls/eclipse.jdt.ls/pull/2704/files#diff-650c7235081f064268836e2cc59177c46317ccf294d54c0f1e7ff683bba2e628). Maybe @testforstephen can comment on whether this has any...
It isn't possible to import a non-static (instance) member, so I don't think that would apply. The purpose of favourite (static) types/members is to refer to them (`sqrt(double)`) without having...
The relevant part : ``` [ERROR][2023-04-04 21:38:11] ...lsp/handlers.lua:485 "4 апр. 2023 г., 21:38:11 org.eclipse.lsp4j.jsonrpc.ResponseErrorException: MethodNotFound org.eclipse.lsp4j.jsonrpc.ResponseErrorException: MethodNotFound java.util.concurrent.CompletionException: org.eclipse.lsp4j.jsonrpc.ResponseErrorException: MethodNotFound at java.base/java.util.concurrent.CompletableFuture.reportJoin(CompletableFuture.java:413) at java.base/java.util.concurrent.CompletableFuture.join(CompletableFuture.java:2118) at org.eclipse.jdt.ls.core.internal.JavaClientConnection.executeClientCommand(JavaClientConnection.java:93) at org.eclipse.jdt.ls.core.internal.handlers.JDTLanguageServer.synchronizeBundles(JDTLanguageServer.java:399) at org.eclipse.jdt.ls.core.internal.handlers.JDTLanguageServer$2.run(JDTLanguageServer.java:288)...
I think we would also run into issues due to https://github.com/eclipse/eclipse.jdt.ls/issues/2621#issuecomment-1524259869 . Also, more of a client-related issue, but [currently vscode-languageclient doesn't explicitly support it](https://github.com/microsoft/vscode-languageserver-node/blob/release/client/8.1.0/client/src/common/completion.ts#L94).
Clients may need to consolidate their snippets (if such support exists) the more we start offering from the server-side. For example, vscode-java provides its own `switch` snippet (no context), but...
Based on discussion from https://github.com/eclipse/eclipse.jdt.ls/issues/2761 it seems like the user there was able to make a similar problem go away by cleaning the workspace folder associated with the project. Are...
CC : @testforstephen So I looked at one of the progress messages that hang : ``` [Trace - 16:36:54] Received notification '$/progress'. Params: { "token": "b0a92711-cde3-4701-a8c3-a7b7a07a0f2f", "value": { "kind": "report",...