oracle / javavscode

Java platform support for Visual Studio Code for full featured Java development (edit-compile-debug & test cycle)
Apache License 2.0
210 stars 15 forks source link

Show constructor signature in hover information #182

Open chriskriel opened 3 weeks ago

chriskriel commented 3 weeks ago

When hovering over a method the hover information / tool-tip correctly shows the method signature. However for a constructor it incorrectly (in my opinion) shows class information and not the signature.

The only why to see the constructor's signature is to hover over a numeric argument to the constructor, which is not always available.

chriskriel commented 3 weeks ago

To be more clear, said "numeric argument" must be a constant, otherwise the tool-tip shows the variable declaration.