Fred Bricon
Fred Bricon
upstream issue https://github.com/eclipse-jdt/eclipse.jdt.core/issues/4550
with `new App().thatField = 5;`, the generated field is static with jdt.ls, not static in Eclipse. Something's fishy here.
@s1n7ax you need to sign the ECA, even for the smallest of contributions
You get as many code action pairs as there are new lines in string literals
In Eclipse, the generated javadoc doesn't contain a link to the remote spec, but at least it doesn't break:
we had a unit test in jbang-eclipse that covered this use case: https://github.com/jbangdev/jbang-eclipse/blob/a2a7968eb1d4c20b9fcfc6ca8326abc121ff9c69/dev.jbang.eclipse.test/src/main/java/dev/jbang/eclipse/core/internal/ImportScriptTest.java#L36-L55 the script in question: https://github.com/jbangdev/jbang-eclipse/blob/main/dev.jbang.eclipse.test/scripts/brokendeps.java The unit test fails now with recent jbangs. Another failing test case,...
> jbang --version 0.132.1 for brokendeps.java, there's no error at all, just a vague warning: > jbang info tools brokendeps.java [jbang] Resolving dependencies... [jbang] com.github.lalyos:jfiglet:6.6.6 [jbang] [WARN] Unable to obtain...
> > for brokendeps.java, there's no error at all, just a vague warning: > > This is by design, if there's no "resolvedDependencies" element then something went wrong while trying...
I need that "Could not read artifact descriptor for org.h2database:h2:jar:2.2.224" message so I can parse it to extract the missing dependency id. Ideally that message format won't change if you...
another case where completion fails: ```java List.of("a", "b").stream().map(n -> n != null? n.|); ```