Class: LanguageServer::Protocol::Interface::VersionedNotebookDocumentIdentifier
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::VersionedNotebookDocumentIdentifier
- Defined in:
- lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb
Overview
A versioned notebook document identifier.
Instance Attribute Summary collapse
- #attributes ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(version:, uri:) ⇒ VersionedNotebookDocumentIdentifier
constructor
A new instance of VersionedNotebookDocumentIdentifier.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
-
#uri ⇒ URI
The notebook document’s uri.
-
#version ⇒ integer
The version number of this notebook document.
Constructor Details
#initialize(version:, uri:) ⇒ VersionedNotebookDocumentIdentifier
Returns a new instance of VersionedNotebookDocumentIdentifier.
10 11 12 13 14 15 16 17 |
# File 'lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb', line 10 def initialize(version:, uri:) @attributes = {} @attributes[:version] = version @attributes[:uri] = uri @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
35 36 37 |
# File 'lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb', line 35 def attributes @attributes end |
Instance Method Details
#to_hash ⇒ Object
37 38 39 |
# File 'lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb', line 37 def to_hash attributes end |
#to_json(*args) ⇒ Object
41 42 43 |
# File 'lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb', line 41 def to_json(*args) to_hash.to_json(*args) end |
#uri ⇒ URI
The notebook document’s uri.
31 32 33 |
# File 'lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb', line 31 def uri attributes.fetch(:uri) end |
#version ⇒ integer
The version number of this notebook document.
23 24 25 |
# File 'lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb', line 23 def version attributes.fetch(:version) end |