Sha256: cdeae87fe83f1627ddbee47d4c75afb5fbaea4b1808b5eaa080dac5126df3793
Contents?: true
Size: 802 Bytes
Versions: 113
Compression:
Stored size: 802 Bytes
Contents
module LanguageServer module Protocol module Interface class WorkDoneProgressEnd def initialize(kind:, message: nil) @attributes = {} @attributes[:kind] = kind @attributes[:message] = message if message @attributes.freeze end # @return ["end"] def kind attributes.fetch(:kind) end # # Optional, a final message indicating to for example indicate the outcome # of the operation. # # @return [string] def message attributes.fetch(:message) 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
113 entries across 113 versions & 15 rubygems