Sha256: 61730b658c3bfbebdc0cd31386e1f4fbf8ddbe705105c222e96f0bf850f508a0
Contents?: true
Size: 726 Bytes
Versions: 113
Compression:
Stored size: 726 Bytes
Contents
module LanguageServer module Protocol module Interface class DocumentOnTypeFormattingClientCapabilities def initialize(dynamic_registration: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes.freeze end # # Whether on type formatting 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