class documentation

This enumeration contains the different times an extension methods are called.

Constant AFTER For each node, call extension methods after the method of the customizable visitor.
Constant BEFORE For each node, call extension methods before the method of the customizable visitor.
Constant INNER Same as AFTER except that the depart() method will be called before calling depart() on the customizable visitor.
Constant OUTTER Same as BEFORE except that the depart() method will be called after calling depart() on the customizable visitor.

For each node, call extension methods after the method of the customizable visitor.

Value
enum.auto()

For each node, call extension methods before the method of the customizable visitor.

Value
enum.auto()

Same as AFTER except that the depart() method will be called before calling depart() on the customizable visitor.

Value
enum.auto()

Same as BEFORE except that the depart() method will be called after calling depart() on the customizable visitor.

Value
enum.auto()