class RuboCop::Cop::Lint::DisjunctiveAssignmentInConstructor

def check_body(body)

def check_body(body)
  return if body.nil?
  case body.type
  when :begin
    check_body_lines(body.child_nodes)
  else
    check_body_lines([body])
  end
end