class RuboCop::Cop::Performance::FixedSize

def contains_double_splat?(node)

def contains_double_splat?(node)
  return unless node.hash_type?
  node.children.any? do |child|
    child.respond_to?(:kwsplat_type?) && child.kwsplat_type?
  end
end