Class: LanguageServer::Protocol::Interface::NotebookDocumentChangeEvent
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::NotebookDocumentChangeEvent
- Defined in:
- lib/language_server/protocol/interface/notebook_document_change_event.rb
Overview
A change event for a notebook document.
Instance Attribute Summary collapse
- #attributes ⇒ Object readonly
Instance Method Summary collapse
-
#cells ⇒ { structure:{ array:NotebookCellArrayChange, didOpen:TextDocumentItem[], didClose:TextDocumentIdentifier[] }, data:NotebookCell[], textContent:{ document:VersionedTextDocumentIdentifier, changes:TextDocumentContentChangeEvent[] }[] } | nil
Changes to cells.
-
#initialize(metadata: nil, cells: nil) ⇒ NotebookDocumentChangeEvent
constructor
A new instance of NotebookDocumentChangeEvent.
-
#metadata ⇒ LSPObject | nil
The changed meta data if any.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(metadata: nil, cells: nil) ⇒ NotebookDocumentChangeEvent
Returns a new instance of NotebookDocumentChangeEvent.
10 11 12 13 14 15 16 17 |
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 10 def initialize(metadata: nil, cells: nil) @attributes = {} @attributes[:metadata] = if @attributes[:cells] = cells if cells @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
37 38 39 |
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 37 def attributes @attributes end |
Instance Method Details
#cells ⇒ { structure:{ array:NotebookCellArrayChange, didOpen:TextDocumentItem[], didClose:TextDocumentIdentifier[] }, data:NotebookCell[], textContent:{ document:VersionedTextDocumentIdentifier, changes:TextDocumentContentChangeEvent[] }[] } | nil
Changes to cells
33 34 35 |
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 33 def cells attributes.fetch(:cells) end |
#metadata ⇒ LSPObject | nil
The changed meta data if any.
Note: should always be an object literal (e.g. LSPObject)
25 26 27 |
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 25 def attributes.fetch(:metadata) end |
#to_hash ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 39 def to_hash attributes end |
#to_json(*args) ⇒ Object
43 44 45 |
# File 'lib/language_server/protocol/interface/notebook_document_change_event.rb', line 43 def to_json(*args) to_hash.to_json(*args) end |