Sha256: b3b6873117b16daa1eec022443f43d51e481b4d2100489daf083626390174462
Contents?: true
Size: 526 Bytes
Versions: 115
Compression:
Stored size: 526 Bytes
Contents
module LanguageServer module Protocol module Interface class ConfigurationParams def initialize(items:) @attributes = {} @attributes[:items] = items @attributes.freeze end # @return [ConfigurationItem[]] def items attributes.fetch(:items) 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
115 entries across 115 versions & 13 rubygems