Sha256: 52c266d38900acc125669141786304a2e6ffd2df7e7f58712b942db20c4bc2f6
Contents?: true
Size: 779 Bytes
Versions: 105
Compression:
Stored size: 779 Bytes
Contents
module LanguageServer module Protocol module Interface # # Capabilities specific to the notebook document support. # class NotebookDocumentClientCapabilities def initialize(synchronization:) @attributes = {} @attributes[:synchronization] = synchronization @attributes.freeze end # # Capabilities specific to notebook document synchronization # # @return [NotebookDocumentSyncClientCapabilities] def synchronization attributes.fetch(:synchronization) end attr_reader :attributes def to_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
105 entries across 105 versions & 14 rubygems