Class: LanguageServer::Protocol::Interface::NotebookDocumentClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::NotebookDocumentClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/notebook_document_client_capabilities.rb
Overview
Capabilities specific to the notebook document support.
Instance Attribute Summary collapse
- #attributes ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(synchronization:) ⇒ NotebookDocumentClientCapabilities
constructor
A new instance of NotebookDocumentClientCapabilities.
-
#synchronization ⇒ NotebookDocumentSyncClientCapabilities
Capabilities specific to notebook document synchronization.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(synchronization:) ⇒ NotebookDocumentClientCapabilities
Returns a new instance of NotebookDocumentClientCapabilities.
10 11 12 13 14 15 16 |
# File 'lib/language_server/protocol/interface/notebook_document_client_capabilities.rb', line 10 def initialize(synchronization:) @attributes = {} @attributes[:synchronization] = synchronization @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
28 29 30 |
# File 'lib/language_server/protocol/interface/notebook_document_client_capabilities.rb', line 28 def attributes @attributes end |
Instance Method Details
#synchronization ⇒ NotebookDocumentSyncClientCapabilities
Capabilities specific to notebook document synchronization
24 25 26 |
# File 'lib/language_server/protocol/interface/notebook_document_client_capabilities.rb', line 24 def synchronization attributes.fetch(:synchronization) end |
#to_hash ⇒ Object
30 31 32 |
# File 'lib/language_server/protocol/interface/notebook_document_client_capabilities.rb', line 30 def to_hash attributes end |
#to_json(*args) ⇒ Object
34 35 36 |
# File 'lib/language_server/protocol/interface/notebook_document_client_capabilities.rb', line 34 def to_json(*args) to_hash.to_json(*args) end |