Sha256: 516d7b5eb431d3c8bf872d9984d8fead0ebc468f9a7ec052db866260ae57e3a8
Contents?: true
Size: 602 Bytes
Versions: 108
Compression:
Stored size: 602 Bytes
Contents
module LanguageServer module Protocol module Interface class SetTraceParams def initialize(value:) @attributes = {} @attributes[:value] = value @attributes.freeze end # # The new value that should be assigned to the trace setting. # # @return [TraceValue] def value attributes.fetch(:value) 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
108 entries across 108 versions & 13 rubygems