class RuboCop::Cop::Style::ParallelAssignment::RescueCorrector

protected by rescue
An internal class for correcting parallel assignment

def begin_correction(rescue_result)

def begin_correction(rescue_result)
  "begin\n" \
    "#{indentation(node)}" \
    "#{assignment.join("\n#{indentation(node)}")}" \
    "\n#{offset(node)}rescue\n" \
    "#{indentation(node)}#{rescue_result.source}" \
    "\n#{offset(node)}end"
end

def correction

def correction
  # If the parallel assignment uses a rescue modifier and it is the
  # only contents of a method, then we want to make use of the
  # implicit begin
  if rhs.parent.parent.parent&.def_type?
    super + def_correction(rescue_result)
  else
    begin_correction(rescue_result)
  end
end

def correction_range

def correction_range
  rhs.parent.parent.source_range
end

def def_correction(rescue_result)

def def_correction(rescue_result)
  "\nrescue" \
    "\n#{offset(node)}#{rescue_result.source}"
end