Class: LanguageServer::Protocol::Interface::ReferenceParams
Instance Attribute Summary collapse
Instance Method Summary
collapse
#position, #text_document
Constructor Details
#initialize(text_document:, position:, context:) ⇒ ReferenceParams
Returns a new instance of ReferenceParams.
5
6
7
8
9
10
11
12
13
|
# File 'lib/language_server/protocol/interface/reference_params.rb', line 5
def initialize(text_document:, position:, context:)
@attributes = {}
@attributes[:textDocument] = text_document
@attributes[:position] = position
@attributes[:context] = context
@attributes.freeze
end
|
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes.
20
21
22
|
# File 'lib/language_server/protocol/interface/reference_params.rb', line 20
def attributes
@attributes
end
|
Instance Method Details
16
17
18
|
# File 'lib/language_server/protocol/interface/reference_params.rb', line 16
def context
attributes.fetch(:context)
end
|
#to_hash ⇒ Object
22
23
24
|
# File 'lib/language_server/protocol/interface/reference_params.rb', line 22
def to_hash
attributes
end
|
#to_json(*args) ⇒ Object
26
27
28
|
# File 'lib/language_server/protocol/interface/reference_params.rb', line 26
def to_json(*args)
to_hash.to_json(*args)
end
|