Class: LanguageServer::Protocol::Interface::TextDocumentRegistrationOptions

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(document_selector:) ⇒ TextDocumentRegistrationOptions

Returns a new instance of TextDocumentRegistrationOptions.



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

def initialize(document_selector:)
  @attributes = {}

  @attributes[:documentSelector] = document_selector

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



22
23
24
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 22

def attributes
  @attributes
end

Instance Method Details

#document_selectorDocumentFilter[]

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:



18
19
20
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 18

def document_selector
  attributes.fetch(:documentSelector)
end

#to_hashObject



24
25
26
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 24

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



28
29
30
# File 'lib/language_server/protocol/interface/text_document_registration_options.rb', line 28

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