class RuboCop::Cop::Layout::RescueEnsureAlignment

def on_new_investigation

def on_new_investigation
  @modifier_locations =
    processed_source.tokens.each_with_object([]) do |token, locations|
      next unless token.rescue_modifier?
      locations << token.pos
    end
end