class Prism::BasicVisitor

def visit_child_nodes(node)

Visits the child nodes of `node` by calling `accept` on each one.
def visit_child_nodes(node)
  # @type self: _Visitor
  node.compact_child_nodes.each { |node| node.accept(self) }
end