Class: LanguageServer::Protocol::Interface::DefinitionParams

Inherits:
Object
  • Object
show all
Defined in:
lib/language_server/protocol/interface/definition_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#attributesObject (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_tokenProgressToken

An optional token that a server can use to report partial results (e.g. streaming) to the client.

Returns:

  • (ProgressToken)


45
46
47
# File 'lib/language_server/protocol/interface/definition_params.rb', line 45

def partial_result_token
  attributes.fetch(:partialResultToken)
end

#positionPosition

The position inside the text document.

Returns:



28
29
30
# File 'lib/language_server/protocol/interface/definition_params.rb', line 28

def position
  attributes.fetch(:position)
end

#text_documentTextDocumentIdentifier

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_hashObject



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_tokenProgressToken

An optional token that a server can use to report work done progress.

Returns:

  • (ProgressToken)


36
37
38
# File 'lib/language_server/protocol/interface/definition_params.rb', line 36

def work_done_token
  attributes.fetch(:workDoneToken)
end