class RuboCop::Cop::Layout::EmptyLineAfterMultilineCondition

def autocorrect(node)

def autocorrect(node)
  lambda do |corrector|
    range = range_by_whole_lines(node.source_range)
    corrector.insert_after(range, "\n")
  end
end