Sha256: 0e1396fc00dbf283015262a52a33fe626cdc11a4fd52af2bd7369293f5b6fc7f
Contents?: true
Size: 579 Bytes
Versions: 118
Compression:
Stored size: 579 Bytes
Contents
module LanguageServer module Protocol module Interface class UnregistrationParams def initialize(unregisterations:) @attributes = {} @attributes[:unregisterations] = unregisterations @attributes.freeze end # @return [Unregistration[]] def unregisterations attributes.fetch(:unregisterations) 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
118 entries across 118 versions & 13 rubygems