Class: LanguageServer::Protocol::Interface::VersionedTextDocumentIdentifier
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::VersionedTextDocumentIdentifier
- Defined in:
- lib/language_server/protocol/interface/versioned_text_document_identifier.rb
Overview
A text document identifier to denote a specific version of a text document.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(version:, uri:) ⇒ VersionedTextDocumentIdentifier
constructor
A new instance of VersionedTextDocumentIdentifier.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
-
#uri ⇒ DocumentUri
The text document’s uri.
-
#version ⇒ integer
The version number of this document.
Constructor Details
#initialize(version:, uri:) ⇒ VersionedTextDocumentIdentifier
Returns a new instance of VersionedTextDocumentIdentifier.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/versioned_text_document_identifier.rb', line 8 def initialize(version:, uri:) @attributes = {} @attributes[:version] = version @attributes[:uri] = uri @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/versioned_text_document_identifier.rb', line 33 def attributes @attributes end |
Instance Method Details
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/versioned_text_document_identifier.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/versioned_text_document_identifier.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |
#uri ⇒ DocumentUri
The text document’s uri.
29 30 31 |
# File 'lib/language_server/protocol/interface/versioned_text_document_identifier.rb', line 29 def uri attributes.fetch(:uri) end |
#version ⇒ integer
The version number of this document.
21 22 23 |
# File 'lib/language_server/protocol/interface/versioned_text_document_identifier.rb', line 21 def version attributes.fetch(:version) end |