forEach method
Visits the immediate children of this node.
Implementation
forEach(callback) {
if (expression != null) callback(expression as Node);
body.forEach(callback);
}
Visits the immediate children of this node.
forEach(callback) {
if (expression != null) callback(expression as Node);
body.forEach(callback);
}