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