Sha256: bf7b3235d659640831f99076bd2ea3a733226676359343aeea4508086a5f1782
Contents?: true
Size: 479 Bytes
Versions: 7
Compression:
Stored size: 479 Bytes
Contents
module LanguageServer module Protocol module Interfaces class ReferenceParams def initialize(context:) @attributes = {} @attributes[:context] = context @attributes.freeze end # @return [ReferenceContext] def context attributes.fetch(:context) end attr_reader :attributes def to_json(*args) attributes.to_json(*args) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems