Sha256: 7d5ca3f970e5aed725d376336e65269833a4e70fda191cbe129d3497d64d64bd
Contents?: true
Size: 735 Bytes
Versions: 110
Compression:
Stored size: 735 Bytes
Contents
module LanguageServer module Protocol module Interface class DidChangeConfigurationClientCapabilities def initialize(dynamic_registration: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes.freeze end # # Did change configuration notification 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
110 entries across 110 versions & 13 rubygems