method

to_dep_map

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