Class: LanguageServer::Protocol::Interface::InlineValueText

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

Overview

Provide inline value as text.

Since:

  • 3.17.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(range:, text:) ⇒ InlineValueText

Returns a new instance of InlineValueText.

Since:

  • 3.17.0



10
11
12
13
14
15
16
17
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 10

def initialize(range:, text:)
  @attributes = {}

  @attributes[:range] = range
  @attributes[:text] = text

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Since:

  • 3.17.0



35
36
37
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 35

def attributes
  @attributes
end

Instance Method Details

#rangeRange

The document range for which the inline value applies.

Returns:

Since:

  • 3.17.0



23
24
25
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 23

def range
  attributes.fetch(:range)
end

#textstring

The text of the inline value.

Returns:

  • (string)

Since:

  • 3.17.0



31
32
33
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 31

def text
  attributes.fetch(:text)
end

#to_hashObject

Since:

  • 3.17.0



37
38
39
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 37

def to_hash
  attributes
end

#to_json(*args) ⇒ Object

Since:

  • 3.17.0



41
42
43
# File 'lib/language_server/protocol/interface/inline_value_text.rb', line 41

def to_json(*args)
  to_hash.to_json(*args)
end