module RuboCop::Cop::Layout::EmptyLinesAroundBody

def first_empty_line_required_child(body)

def first_empty_line_required_child(body)
  if body.begin_type?
    body.children.find { |child| empty_line_required?(child) }
  elsif empty_line_required?(body)
    body
  end
end