Sha256: fd9ad01691dbefbe69d763ce3c1409872de1246890aba982576506ac53d18fe2
Contents?: true
Size: 719 Bytes
Versions: 113
Compression:
Stored size: 719 Bytes
Contents
module LanguageServer module Protocol module Interface class DocumentHighlightClientCapabilities def initialize(dynamic_registration: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes.freeze end # # Whether document highlight 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