Class: LanguageServer::Protocol::Interface::NotebookDocumentChangeEvent

Inherits:
Object
  • Object
show all
Defined in:
lib/language_server/protocol/interface/notebook_document_change_event.rb

Overview

A change event for a notebook document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(metadata: nil, cells: nil) ⇒ NotebookDocumentChangeEvent

Returns a new instance of NotebookDocumentChangeEvent.



8
9
10
11
12
13
14
15
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 8

def initialize(metadata: nil, cells: nil)
  @attributes = {}

  @attributes[:metadata] =  if 
  @attributes[:cells] = cells if cells

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



33
34
35
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 33

def attributes
  @attributes
end

Instance Method Details

#cells{ structure?: { array: NotebookCellArrayChange; didOpen?: TextDocumentItem[]; didClose?: TextDocumentIdentifier[]; }; data?: NotebookCell[]; textContent?: { ...; }[]; }

Changes to cells

Returns:



29
30
31
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 29

def cells
  attributes.fetch(:cells)
end

#metadataLSPObject

The changed meta data if any.

Returns:

  • (LSPObject)


21
22
23
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 21

def 
  attributes.fetch(:metadata)
end

#to_hashObject



35
36
37
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 35

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



39
40
41
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 39

def to_json(*args)
  to_hash.to_json(*args)
end