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
I'm able to get typeHierarchy/subtypes returning a subclass, but typeHierarchy/supertypes returns an empty list for package_a.Foo:
typeHierarchy/subtypes
typeHierarchy/supertypes
package_a.Foo
package package_a; public interface FooInterface { void foo(String bar); } public class BaseFoo implements FooInterface { public void foo(String bar) { System.out.println("BaseFoo " + bar); } } public class Foo extends BaseFoo { public Foo() { System.out.println("Foo() in package_a"); } public Foo(String bar) { System.out.println("Foo " + bar); } public void foo(String bar) { System.out.println("Foo " + bar); } }
The text was updated successfully, but these errors were encountered:
typeHierarchy/subtypes is also returning empty, even though textDocument/prepareTypeHierarchy works
textDocument/prepareTypeHierarchy
Sorry, something went wrong.
Do you have the exact protocol request/responses when you perform these actions ? Are there any errors emitted in the logs ?
No branches or pull requests
I'm able to get
typeHierarchy/subtypes
returning a subclass, buttypeHierarchy/supertypes
returns an empty list forpackage_a.Foo
:The text was updated successfully, but these errors were encountered: