class RuboCop::Cop::Style::EachWithObject

def return_value(body)

def return_value(body)
  return unless body
  return_value = body.type == :begin ? body.children.last : body
  return_value if return_value && return_value.type == :lvar
end