Sha256: 38fe402e2871c74e1bec5f0ce9cf9236754cdb53a230e34ba4685d4ebbf91d2e
Contents?: true
Size: 540 Bytes
Versions: 108
Compression:
Stored size: 540 Bytes
Contents
module LanguageServer module Protocol module Interface class SemanticTokensDeltaPartialResult def initialize(edits:) @attributes = {} @attributes[:edits] = edits @attributes.freeze end # @return [SemanticTokensEdit[]] def edits attributes.fetch(:edits) 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