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