Sha256: a2d3d367b13932a3f9e30348879a3fc8643f0d0ccaf807ed0ab8f028a0faeaa9
Contents?: true
Size: 584 Bytes
Versions: 7
Compression:
Stored size: 584 Bytes
Contents
module LanguageServer module Protocol module Interfaces 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_json(*args) attributes.to_json(*args) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems