class Sass::Tree::Visitors::Base
def visit_children(parent)
-
(Array
- The return values of the `visit_*` methods for the children.
Parameters:
-
parent
(Tree::Node
) -- The parent node of the children to visit.
def visit_children(parent) parent.children.map {|c| visit(c)} end