transformChildren<A> method
Transforms children of this node by invoking transformer with the
argument arg.
Implementation
@override
void transformChildren<A>(Transformer<A> transformer, A arg) {
terms = transformer.transformChildren(terms, this, arg);
}