We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you have a class Foo, and a class Bar like:
class Bar { Foo foo = new Foo(); }
find implementation on Foo, doesn't find the actual Foo class!
The text was updated successfully, but these errors were encountered:
Related PR - redhat-developer/vscode-java#257
Sorry, something went wrong.
Whether codelenses are enabled and/or only working for interfaces/abstract classes should not affect the explicit calls to search for implementations
Could you try the following:
class Bar { Foo foo = new Foo() {}; }
For this case, if the class doesn't find any subtype, then go to definition instead.
testforstephen
Successfully merging a pull request may close this issue.
If you have a class Foo, and a class Bar like:
find implementation on Foo, doesn't find the actual Foo class!
The text was updated successfully, but these errors were encountered: