Sha256: 39aa2001fd28e9c40838cb27af667ba2c50b255c6aa003c57daa8b0672146e5c
Contents?: true
Size: 926 Bytes
Versions: 116
Compression:
Stored size: 926 Bytes
Contents
module LanguageServer module Protocol module Interface class DidSaveTextDocumentParams def initialize(text_document:, text: nil) @attributes = {} @attributes[:textDocument] = text_document @attributes[:text] = text if text @attributes.freeze end # # The document that was saved. # # @return [TextDocumentIdentifier] def text_document attributes.fetch(:textDocument) end # # Optional the content when saved. Depends on the includeText value # when the save notification was requested. # # @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
Version data entries
116 entries across 116 versions & 13 rubygems