Class: LanguageServer::Protocol::Interface::InlayHintRegistrationOptions

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

Overview

Inlay hint options used during static or dynamic registration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(work_done_progress: nil, resolve_provider: nil, document_selector:, id: nil) ⇒ InlayHintRegistrationOptions

Returns a new instance of InlayHintRegistrationOptions.



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

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

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

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



51
52
53
# File 'lib/language_server/protocol/interface/inlay_hint_registration_options.rb', line 51

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)


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

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)


47
48
49
# File 'lib/language_server/protocol/interface/inlay_hint_registration_options.rb', line 47

def id
  attributes.fetch(:id)
end

#resolve_providerboolean

The server provides support to resolve additional information for an inlay hint item.

Returns:

  • (boolean)


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

def resolve_provider
  attributes.fetch(:resolveProvider)
end

#to_hashObject



53
54
55
# File 'lib/language_server/protocol/interface/inlay_hint_registration_options.rb', line 53

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



57
58
59
# File 'lib/language_server/protocol/interface/inlay_hint_registration_options.rb', line 57

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

#work_done_progressboolean

Returns:

  • (boolean)


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

def work_done_progress
  attributes.fetch(:workDoneProgress)
end