Class: LanguageServer::Protocol::Interfaces::TextDocumentChangeRegistrationOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interfaces::TextDocumentChangeRegistrationOptions
- Defined in:
- lib/language_server/protocol/interfaces/text_document_change_registration_options.rb
Overview
Descibe options to be used when registered for text document change events.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(sync_kind:) ⇒ TextDocumentChangeRegistrationOptions
constructor
A new instance of TextDocumentChangeRegistrationOptions.
-
#sync_kind ⇒ number
How documents are synced to the server.
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(sync_kind:) ⇒ TextDocumentChangeRegistrationOptions
Returns a new instance of TextDocumentChangeRegistrationOptions.
8 9 10 11 12 13 14 |
# File 'lib/language_server/protocol/interfaces/text_document_change_registration_options.rb', line 8 def initialize(sync_kind:) @attributes = {} @attributes[:syncKind] = sync_kind @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
25 26 27 |
# File 'lib/language_server/protocol/interfaces/text_document_change_registration_options.rb', line 25 def attributes @attributes end |
Instance Method Details
#sync_kind ⇒ number
How documents are synced to the server. See TextDocumentSyncKind.Full and TextDocumentSyncKindIncremental.
21 22 23 |
# File 'lib/language_server/protocol/interfaces/text_document_change_registration_options.rb', line 21 def sync_kind attributes.fetch(:syncKind) end |
#to_json(*args) ⇒ Object
27 28 29 |
# File 'lib/language_server/protocol/interfaces/text_document_change_registration_options.rb', line 27 def to_json(*args) attributes.to_json(*args) end |