Sha256: 27e333888ca9a2113f8699f04b7813faa3577f68180f3ff9ec111158637d0c61
Contents?: true
Size: 1.31 KB
Versions: 109
Compression:
Stored size: 1.31 KB
Contents
module LanguageServer module Protocol module Interface class DocumentRangeFormattingParams def initialize(work_done_token: nil, text_document:, range:, options:) @attributes = {} @attributes[:workDoneToken] = work_done_token if work_done_token @attributes[:textDocument] = text_document @attributes[:range] = range @attributes[:options] = options @attributes.freeze end # # An optional token that a server can use to report work done progress. # # @return [ProgressToken] def work_done_token attributes.fetch(:workDoneToken) end # # The document to format. # # @return [TextDocumentIdentifier] def text_document attributes.fetch(:textDocument) end # # The range to format # # @return [Range] def range attributes.fetch(:range) end # # The format options # # @return [FormattingOptions] def options attributes.fetch(:options) 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
109 entries across 109 versions & 15 rubygems