Class: LanguageServer::Protocol::Interface::FoldingRangeRegistrationOptions

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(document_selector:, work_done_progress: nil, id: nil) ⇒ FoldingRangeRegistrationOptions

Returns a new instance of FoldingRangeRegistrationOptions.



5
6
7
8
9
10
11
12
13
# File 'lib/language_server/protocol/interface/folding_range_registration_options.rb', line 5

def initialize(document_selector:, work_done_progress: nil, id: nil)
  @attributes = {}

  @attributes[:documentSelector] = document_selector
  @attributes[:workDoneProgress] = work_done_progress if work_done_progress
  @attributes[:id] = id if id

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



38
39
40
# File 'lib/language_server/protocol/interface/folding_range_registration_options.rb', line 38

def attributes
  @attributes
end

Instance Method Details

#document_selectorDocumentSelector

A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.

Returns:

  • (DocumentSelector)


20
21
22
# File 'lib/language_server/protocol/interface/folding_range_registration_options.rb', line 20

def document_selector
  attributes.fetch(:documentSelector)
end

#idstring

The id used to register the request. The id can be used to deregister the request again. See also Registration#id.

Returns:

  • (string)


34
35
36
# File 'lib/language_server/protocol/interface/folding_range_registration_options.rb', line 34

def id
  attributes.fetch(:id)
end

#to_hashObject



40
41
42
# File 'lib/language_server/protocol/interface/folding_range_registration_options.rb', line 40

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



44
45
46
# File 'lib/language_server/protocol/interface/folding_range_registration_options.rb', line 44

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

#work_done_progressboolean

Returns:

  • (boolean)


25
26
27
# File 'lib/language_server/protocol/interface/folding_range_registration_options.rb', line 25

def work_done_progress
  attributes.fetch(:workDoneProgress)
end