Description
Background: The "Go to Implementations" feature of VS Code, which corresponds to the textDocument/implementation
LSP request, is defined to return all the concrete implementations of a given interface or abstract type. In other words, the query is inherently "downwards" with respect to the type hierarchy.
The corresponding "upwards" query is equally useful. In some LSP servers, such as gopls for Go, the behavior of this feature depends on the concreteness of the queried type. If it's an interface, the response includes types that may be assigned to it: concrete and interface types with equal or greater methods sets. If it's a concrete type, the response includes only interfaces to which the queried type may be assigned. This unfortunately leaves the user with no way to ask the question "what are the superinterfaces of this interface?", or, in Java terms, "what are the superclasses of this abstract class"? In Java there is at least the option to traverse the implements
relation, which is explicitly declared, but in Go there is no syntactic relationship between implements
-related types, making tooling even more important.
Proposal: we propose to add a corresponding "Go to Interfaces" (or perhaps "supertypes") feature to VS Code that would make a similar textDocument/implementation
query with opposite directionality. At the LSP protocol level, this would be indicated by an optional upwards boolean
in the textDocument/implementation
request indicating that the direction of the query is reversed from the usual downwards behavior represented by null or false.