Sha256: 198bf3f4701d5e740c661ecf632228ba0a5a4030d45ede595aeab4df4d372461
Contents?: true
Size: 560 Bytes
Versions: 117
Compression:
Stored size: 560 Bytes
Contents
module LanguageServer module Protocol module Interface class RegistrationParams def initialize(registrations:) @attributes = {} @attributes[:registrations] = registrations @attributes.freeze end # @return [Registration[]] def registrations attributes.fetch(:registrations) 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
117 entries across 117 versions & 13 rubygems