Sha256: d3cec42d9f5dd928674a084f198c059cb2eb9f2b8fb6141ea60cb7c68d64bac9
Contents?: true
Size: 529 Bytes
Versions: 7
Compression:
Stored size: 529 Bytes
Contents
module LanguageServer module Protocol module Interfaces 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_json(*args) attributes.to_json(*args) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems