Sha256: 7998c6fc8060acce00ebd3ea1247dcca4ad7fb64fcb9b8b548292ab9ab26531d
Contents?: true
Size: 703 Bytes
Versions: 109
Compression:
Stored size: 703 Bytes
Contents
module LanguageServer module Protocol module Interface class ReferenceClientCapabilities def initialize(dynamic_registration: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes.freeze end # # Whether references 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
109 entries across 109 versions & 12 rubygems