Interface RuleValueVisitor<R>
-
- Type Parameters:
R
- The return type of the visitor
public interface RuleValueVisitor<R>
Visitor for the right-hand side of rules (tree, error, endpoint)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
visitEndpointRule(EndpointResult endpoint)
R
visitErrorRule(Expr error)
R
visitTreeRule(List<Rule> rules)
-