Sha256: 88d6c141def8971f52227de92d92365904aefd6f47b070ae1f7f2252b2832a88
Contents?: true
Size: 607 Bytes
Versions: 106
Compression:
Stored size: 607 Bytes
Contents
module LanguageServer module Protocol module Interface class DocumentFormattingOptions def initialize(work_done_progress: nil) @attributes = {} @attributes[:workDoneProgress] = work_done_progress if work_done_progress @attributes.freeze end # @return [boolean] def work_done_progress attributes.fetch(:workDoneProgress) 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
106 entries across 106 versions & 13 rubygems