View Source GenLSP.Requests.TextDocumentImplementation (gen_lsp v0.10.0)
A request to resolve the implementation locations of a symbol at a given text document position. The request's parameter is of type [TextDocumentPositionParams] (#TextDocumentPositionParams) the response is of type {@link Definition} or a Thenable that resolves to such.
Message Direction: clientToServer
Link to this section Summary
Link to this section Types
@type result() :: GenLSP.TypeAlias.Definition.t() | [GenLSP.TypeAlias.DefinitionLink.t()] | nil
@type t() :: %GenLSP.Requests.TextDocumentImplementation{ id: integer(), jsonrpc: String.t(), method: String.t(), params: GenLSP.Structures.ImplementationParams.t() | nil }