class RuboCop::Cop::Layout::SpaceAroundOperators

def on_pair(node)

def on_pair(node)
  return unless node.hash_rocket?
  return if hash_table_style? && !node.parent.pairs_on_same_line?
  check_operator(:pair, node.loc.operator, node.source_range)
end