Class: LanguageServer::Protocol::Interface::TextDocumentChangeRegistrationOptions

Inherits:
TextDocumentRegistrationOptions show all
Defined in:
lib/language_server/protocol/interface/text_document_change_registration_options.rb

Overview

Describe options to be used when registering for text document change events.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from TextDocumentRegistrationOptions

#document_selector

Constructor Details

#initialize(document_selector:, sync_kind:) ⇒ TextDocumentChangeRegistrationOptions

Returns a new instance of TextDocumentChangeRegistrationOptions.



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

def initialize(document_selector:, sync_kind:)
  @attributes = {}

  @attributes[:syncKind] = sync_kind

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



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

def attributes
  @attributes
end

Instance Method Details

#sync_kindnumber

How documents are synced to the server. See TextDocumentSyncKind.Full and TextDocumentSyncKind.Incremental.

Returns:

  • (number)


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

def sync_kind
  attributes.fetch(:syncKind)
end

#to_hashObject



27
28
29
# File 'lib/language_server/protocol/interface/text_document_change_registration_options.rb', line 27

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



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

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