Sha256: daff717dcf7230b9f96f41281043b517a416c797815b85d05f4c09ee40e6af0f
Contents?: true
Size: 595 Bytes
Versions: 104
Compression:
Stored size: 595 Bytes
Contents
module LanguageServer module Protocol module Interface class DidChangeConfigurationParams def initialize(settings:) @attributes = {} @attributes[:settings] = settings @attributes.freeze end # # The actual changed settings # # @return [LSPAny] def settings attributes.fetch(:settings) 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
104 entries across 104 versions & 13 rubygems