Class: LanguageServer::Protocol::Interface::DefinitionParams
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::DefinitionParams
- Defined in:
- lib/language_server/protocol/interface/definition_params.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(text_document:, position:, work_done_token: nil, partial_result_token: nil) ⇒ DefinitionParams
constructor
A new instance of DefinitionParams.
-
#partial_result_token ⇒ ProgressToken
An optional token that a server can use to report partial results (e.g. streaming) to the client.
-
#position ⇒ Position
The position inside the text document.
-
#text_document ⇒ TextDocumentIdentifier
The text document.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
-
#work_done_token ⇒ ProgressToken
An optional token that a server can use to report work done progress.
Constructor Details
#initialize(text_document:, position:, work_done_token: nil, partial_result_token: nil) ⇒ DefinitionParams
Returns a new instance of DefinitionParams.
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 5 def initialize(text_document:, position:, work_done_token: nil, partial_result_token: nil) @attributes = {} @attributes[:textDocument] = text_document @attributes[:position] = position @attributes[:workDoneToken] = work_done_token if work_done_token @attributes[:partialResultToken] = partial_result_token if partial_result_token @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
49 50 51 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 49 def attributes @attributes end |
Instance Method Details
#partial_result_token ⇒ ProgressToken
An optional token that a server can use to report partial results (e.g. streaming) to the client.
45 46 47 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 45 def partial_result_token attributes.fetch(:partialResultToken) end |
#position ⇒ Position
The position inside the text document.
28 29 30 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 28 def position attributes.fetch(:position) end |
#text_document ⇒ TextDocumentIdentifier
The text document.
20 21 22 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 20 def text_document attributes.fetch(:textDocument) end |
#to_hash ⇒ Object
51 52 53 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 51 def to_hash attributes end |
#to_json(*args) ⇒ Object
55 56 57 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 55 def to_json(*args) to_hash.to_json(*args) end |
#work_done_token ⇒ ProgressToken
An optional token that a server can use to report work done progress.
36 37 38 |
# File 'lib/language_server/protocol/interface/definition_params.rb', line 36 def work_done_token attributes.fetch(:workDoneToken) end |