visitChildren method
- @Deprecated('Use Element2 and visitChildren2() instead')
- @override
- ElementVisitor visitor
inherited
Use the given visitor
to visit all of the children of this element.
There is no guarantee of the order in which the children will be visited.
Implementation
@Deprecated('Use Element2 and visitChildren2() instead')
@override
void visitChildren(ElementVisitor visitor) {
for (Element child in children) {
child.accept(visitor);
}
}