Class: LanguageServer::Protocol::Interface::TextDocumentChangeRegistrationOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::TextDocumentChangeRegistrationOptions
- 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
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#document_selector ⇒ DocumentSelector
A document selector to identify the scope of the registration.
-
#initialize(document_selector:, sync_kind:) ⇒ TextDocumentChangeRegistrationOptions
constructor
A new instance of TextDocumentChangeRegistrationOptions.
-
#sync_kind ⇒ TextDocumentSyncKind
How documents are synced to the server.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(document_selector:, sync_kind:) ⇒ TextDocumentChangeRegistrationOptions
Returns a new instance of TextDocumentChangeRegistrationOptions.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/text_document_change_registration_options.rb', line 8 def initialize(document_selector:, sync_kind:) @attributes = {} @attributes[:documentSelector] = document_selector @attributes[:syncKind] = sync_kind @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
35 36 37 |
# File 'lib/language_server/protocol/interface/text_document_change_registration_options.rb', line 35 def attributes @attributes end |
Instance Method Details
#document_selector ⇒ DocumentSelector
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.
22 23 24 |
# File 'lib/language_server/protocol/interface/text_document_change_registration_options.rb', line 22 def document_selector attributes.fetch(:documentSelector) end |
#sync_kind ⇒ TextDocumentSyncKind
How documents are synced to the server. See TextDocumentSyncKind.Full and TextDocumentSyncKind.Incremental.
31 32 33 |
# File 'lib/language_server/protocol/interface/text_document_change_registration_options.rb', line 31 def sync_kind attributes.fetch(:syncKind) end |
#to_hash ⇒ Object
37 38 39 |
# File 'lib/language_server/protocol/interface/text_document_change_registration_options.rb', line 37 def to_hash attributes end |
#to_json(*args) ⇒ Object
41 42 43 |
# File 'lib/language_server/protocol/interface/text_document_change_registration_options.rb', line 41 def to_json(*args) to_hash.to_json(*args) end |