eclipse.jdt.ls
eclipse.jdt.ls copied to clipboard
Go to definition does not work with method references
Environment: NeoVim 0.5 Platform: Arch Linux
I noticed that go-to-definition, go-to-implementation, hover, etc. do not work on method references. In this example,
List.of("1", "2", "3")
.map(Integer::valueOf)
...
the respective actions are applied to java.util.Function.apply()
(the parameter of map
) instead of Integer.valueOf()
.
This may be related to #1461.
Update: Find references also excludes method references.
May be related to #1780
seems to work in the newest version 1.19.0. @mrcjkb could you please help verify it?
seems to work in the newest version 1.19.0. @mrcjkb could you please help verify it?
I haven't worked with Java in a while, but I can give it a go this weekend :smile:
Seems to be working for me too.