Class: Solargraph::LanguageServer::Message::TextDocument::References

Inherits:
Base
  • Object
show all
Defined in:
lib/solargraph/language_server/message/text_document/references.rb

Instance Attribute Summary

Attributes inherited from Base

#filename

Attributes inherited from Base

#error, #host, #id, #method, #params, #request, #result

Instance Method Summary collapse

Methods inherited from Base

#post_initialize

Methods included from UriHelpers

file_to_uri, uri_to_file

Methods inherited from Base

#initialize, #post_initialize, #send_response, #set_error, #set_result

Constructor Details

This class inherits a constructor from Solargraph::LanguageServer::Message::Base

Instance Method Details

#processObject



3
4
5
6
7
8
9
10
11
12
# File 'lib/solargraph/language_server/message/text_document/references.rb', line 3

def process
  locs = host.references_from(uri_to_file(params['textDocument']['uri']), params['position']['line'], params['position']['character'])
  result = locs.map do |loc|
    {
      uri: file_to_uri(loc.filename),
      range: loc.range.to_hash
    }
  end
  set_result result
end