Sha256: 850f4d626d36fb5cabee2c77bc16ab132db570142056a67fbfdd6bb3a8f23097
Contents?: true
Size: 518 Bytes
Versions: 107
Compression:
Stored size: 518 Bytes
Contents
module LanguageServer module Protocol module Interface class SemanticTokensPartialResult def initialize(data:) @attributes = {} @attributes[:data] = data @attributes.freeze end # @return [number[]] def data attributes.fetch(:data) 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
107 entries across 107 versions & 13 rubygems