Sha256: 1c04fa3fb57187072679daa654f150be3251daff9963f43dc6b4aec8fcac1719
Contents?: true
Size: 603 Bytes
Versions: 109
Compression:
Stored size: 603 Bytes
Contents
module LanguageServer module Protocol module Interface class ImplementationOptions 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
109 entries across 109 versions & 15 rubygems