method
to_dep_map
v7.2.3 -
Show latest stable
- Class:
ActionView::Digestor::Node
to_dep_map(seen = Set.new.compare_by_identity)public
No documentation available.
# File actionview/lib/action_view/digestor.rb, line 110
def to_dep_map(seen = Set.new.compare_by_identity)
if seen.add?(self)
children.any? ? { name => children.map { |c| c.to_dep_map(seen) } } : name
else # the tree has a cycle
name
end
end