Interface PathExpressionParserVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
PathExpressionParserBaseVisitor,PathExpressionVisitor,PathExpressionVisitor.Getter,PathExpressionVisitor.Setter
public interface PathExpressionParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
PathExpressionParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byPathExpressionParser.array_index().Visit a parse tree produced byPathExpressionParser.id().Visit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitPath
Visit a parse tree produced by thepathlabeled alternative inPathExpressionParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitId
Visit a parse tree produced byPathExpressionParser.id().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArray_index
Visit a parse tree produced byPathExpressionParser.array_index().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-