class TypeProf::LSP::Message::TextDocument::Definition

textDocument/declaration request

Constants

METHOD

Public Instance Methods

run() click to toggle source
# File typeprof-0.30.1/lib/typeprof/lsp/messages.rb, line 176
def run
  @params => {
    textDocument: { uri: },
    position: pos,
  }
  text = @server.open_texts[uri]
  unless text
    respond(nil)
    return
  end
  defs = @server.core.definitions(text.path, TypeProf::CodePosition.from_lsp(pos))
  if defs.empty?
    respond(nil)
  else
    respond(defs.map do |path, code_range|
      {
        uri: @server.path_to_uri(path),
        range: code_range.to_lsp,
      }
    end)
  end
end