class RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords

def keyword_locations_in_ensure(node)

def keyword_locations_in_ensure(node)
  ensure_body, = *node
  [
    node.loc.keyword,
    *keyword_locations(ensure_body)
  ]
end