Function Node.propagateCall

Calls the given method (if present) with the arguments given in args on this node and recursively on all its children. If the parent_first argument is true, the method will be called on the current node first, then on all its children. If parent_first is false, the children will be called first.

void propagateCall (
  const(String) method,
  const(Array) args = make(),
  const(bool) parent_first = false
) nothrow @nogc;