Sha256: 165b254c4437437f8c3b0d005655f185e7c65503a6812529fa96c8d80665fa55
Contents?: true
Size: 711 Bytes
Versions: 113
Compression:
Stored size: 711 Bytes
Contents
module LanguageServer module Protocol module Interface class DocumentColorClientCapabilities def initialize(dynamic_registration: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes.freeze end # # Whether document color supports dynamic registration. # # @return [boolean] def dynamic_registration attributes.fetch(:dynamicRegistration) 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