recursive_successors()
@return [Array] the vertices of {#graph} where `self` is an
{#ancestor?}
# File lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 70 def recursive_successors vertices = successors vertices += Compatibility.flat_map(vertices, &:recursive_successors) vertices.uniq! vertices end