Package org.antlr.runtime.tree
Interface TreeVisitorAction
-
public interface TreeVisitorActionHow to execute code for node t when a visitor visits node t. Execute pre() before visiting children and execute post() after visiting children.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectpost(Object t)Execute an action after visiting children of t.Objectpre(Object t)Execute an action before visiting children of t.
-