Sha256: ff6a990792367cf4c806632d6edc6a17f2bc69cfdac584e1018db0a532f60e24
Contents?: true
Size: 577 Bytes
Versions: 7
Compression:
Stored size: 577 Bytes
Contents
module LanguageServer module Protocol module Interfaces class DidOpenTextDocumentParams def initialize(text_document:) @attributes = {} @attributes[:textDocument] = text_document @attributes.freeze end # # The document that was opened. # # @return [TextDocumentItem] 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