Sha256: d92b39338a000d1be8b2ff158e357e313596807bb873e9bdc0e74e9f67646a6f
Contents?: true
Size: 678 Bytes
Versions: 106
Compression:
Stored size: 678 Bytes
Contents
module LanguageServer module Protocol module Interface # # Inline value options used during static registration. # class InlineValueOptions 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 & 15 rubygems