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