1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
module LanguageServer
module Protocol
module Interface
class TextDocumentItem
def initialize(uri:, language_id:, version:, text:)
@attributes = {}
@attributes[:uri] = uri
@attributes[:languageId] = language_id
@attributes[:version] = version
@attributes[:text] = text
@attributes.freeze
end
#
# The text document's URI.
#
# @return [string]
def uri
attributes.fetch(:uri)
end
#
# The text document's language identifier.
#
# @return [string]
def language_id
attributes.fetch(:languageId)
end
#
# The version number of this document (it will increase after each
# change, including undo/redo).
#
# @return [number]
def version
attributes.fetch(:version)
end
#
# The content of the opened text document.
#
# @return [string]
def text
attributes.fetch(:text)
end
attr_reader :attributes
def to_hash
attributes
end
def to_json(*args)
to_hash.to_json(*args)
end
end
end
end
end
|