Sha256: 3438957050babd2dce3e8269be60327f81c80796b9f44b17639f96a0c553c902
Contents?: true
Size: 596 Bytes
Versions: 109
Compression:
Stored size: 596 Bytes
Contents
module LanguageServer module Protocol module Interface class MonikerOptions 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