safelyVisitChildren method
Use the given visitor
to visit all of the children
in the given array.
Implementation
void safelyVisitChildren(List<Element> children, ElementVisitor visitor) {
for (Element child in children) {
child.accept(visitor);
}
}