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.

struct Node
@nogc nothrow
void
propagateCall
(
in String method
,
in Array args = Array.make()
,
in bool parent_first = false
)

Meta