Class: LanguageServer::Protocol::Interface::NotebookDocumentSyncClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::NotebookDocumentSyncClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb
Overview
Notebook specific client capabilities.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#dynamic_registration ⇒ boolean
Whether implementation supports dynamic registration.
-
#execution_summary_support ⇒ boolean
The client supports sending execution summary data per cell.
-
#initialize(dynamic_registration: nil, execution_summary_support: nil) ⇒ NotebookDocumentSyncClientCapabilities
constructor
A new instance of NotebookDocumentSyncClientCapabilities.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(dynamic_registration: nil, execution_summary_support: nil) ⇒ NotebookDocumentSyncClientCapabilities
Returns a new instance of NotebookDocumentSyncClientCapabilities.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb', line 8 def initialize(dynamic_registration: nil, execution_summary_support: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes[:executionSummarySupport] = execution_summary_support if execution_summary_support @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
36 37 38 |
# File 'lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb', line 36 def attributes @attributes end |
Instance Method Details
#dynamic_registration ⇒ boolean
Whether implementation supports dynamic registration. If this is set to ‘true` the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)` return value for the corresponding server capability as well.
24 25 26 |
# File 'lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb', line 24 def dynamic_registration attributes.fetch(:dynamicRegistration) end |
#execution_summary_support ⇒ boolean
The client supports sending execution summary data per cell.
32 33 34 |
# File 'lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb', line 32 def execution_summary_support attributes.fetch(:executionSummarySupport) end |
#to_hash ⇒ Object
38 39 40 |
# File 'lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb', line 38 def to_hash attributes end |
#to_json(*args) ⇒ Object
42 43 44 |
# File 'lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb', line 42 def to_json(*args) to_hash.to_json(*args) end |