Sha256: 5e6f31ce8a04a0ffcb78ace5bdc47c90486104d6ccf8b54d7c6f56079962f04e
Contents?: true
Size: 634 Bytes
Versions: 116
Compression:
Stored size: 634 Bytes
Contents
module LanguageServer module Protocol module Interface class DidCloseTextDocumentParams def initialize(text_document:) @attributes = {} @attributes[:textDocument] = text_document @attributes.freeze end # # The document that was closed. # # @return [TextDocumentIdentifier] def text_document attributes.fetch(:textDocument) end attr_reader :attributes def to_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
116 entries across 116 versions & 13 rubygems