Sha256: 6ebebd9ee824bed29c07f70ef74ec44ab0227ee07533a84caf4ecfe1699fec01
Contents?: true
Size: 1.12 KB
Versions: 109
Compression:
Stored size: 1.12 KB
Contents
module LanguageServer module Protocol module Interface class DocumentFormattingParams def initialize(work_done_token: nil, text_document:, options:) @attributes = {} @attributes[:workDoneToken] = work_done_token if work_done_token @attributes[:textDocument] = text_document @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 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