Class: LanguageServer::Protocol::Interface::ColorInformation

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

Overview

Represents a color range from a document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(range:, color:) ⇒ ColorInformation

Returns a new instance of ColorInformation.



8
9
10
11
12
13
14
15
# File 'lib/language_server/protocol/interface/color_information.rb', line 8

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

  @attributes[:range] = range
  @attributes[:color] = color

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



33
34
35
# File 'lib/language_server/protocol/interface/color_information.rb', line 33

def attributes
  @attributes
end

Instance Method Details

#colorColor

The actual color value for this color range.

Returns:



29
30
31
# File 'lib/language_server/protocol/interface/color_information.rb', line 29

def color
  attributes.fetch(:color)
end

#rangeRange

The range in the document where this color appears.

Returns:



21
22
23
# File 'lib/language_server/protocol/interface/color_information.rb', line 21

def range
  attributes.fetch(:range)
end

#to_hashObject



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



39
40
41
# File 'lib/language_server/protocol/interface/color_information.rb', line 39

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