class LanguageServer::Protocol::Interface::NotebookDocumentSyncClientCapabilities

Notebook specific client capabilities.

Attributes

attributes[R]

Public Class Methods

new(dynamic_registration: nil, execution_summary_support: nil) click to toggle source
# 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

Public Instance Methods

dynamic_registration() click to toggle source

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.

@return [boolean]

# File lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb, line 24
def dynamic_registration
  attributes.fetch(:dynamicRegistration)
end
execution_summary_support() click to toggle source

The client supports sending execution summary data per cell.

@return [boolean]

# File lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb, line 32
def execution_summary_support
  attributes.fetch(:executionSummarySupport)
end
to_hash() click to toggle source
# File lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb, line 38
def to_hash
  attributes
end
to_json(*args) click to toggle source
# File lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb, line 42
def to_json(*args)
  to_hash.to_json(*args)
end