Class: Solargraph::LanguageServer::Message::TextDocument::Definition
- Defined in:
- lib/solargraph/language_server/message/text_document/definition.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Base
#error, #host, #id, #method, #params, #request, #result
Instance Method Summary collapse
Methods inherited from Base
Methods included from UriHelpers
decode, encode, 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
#process ⇒ Object
5 6 7 8 9 |
# File 'lib/solargraph/language_server/message/text_document/definition.rb', line 5 def process @line = params['position']['line'] @column = params['position']['character'] set_result(code_location || require_location || []) end |