Class: LanguageServer::Protocol::Interface::InlineValueText
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::InlineValueText
- Defined in:
- lib/language_server/protocol/interface/inline_value_text.rb
Overview
Provide inline value as text.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(range:, text:) ⇒ InlineValueText
constructor
A new instance of InlineValueText.
-
#range ⇒ Range
The document range for which the inline value applies.
-
#text ⇒ string
The text of the inline value.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(range:, text:) ⇒ InlineValueText
Returns a new instance of InlineValueText.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 8 def initialize(range:, text:) @attributes = {} @attributes[:range] = range @attributes[:text] = text @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 33 def attributes @attributes end |
Instance Method Details
#range ⇒ Range
The document range for which the inline value applies.
21 22 23 |
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 21 def range attributes.fetch(:range) end |
#text ⇒ string
The text of the inline value.
29 30 31 |
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 29 def text attributes.fetch(:text) end |
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |