Interface JPPExpressionVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
AbstractingJPPExpressionVisitor
,JPPExpressionBaseVisitor
public interface JPPExpressionVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
JPPExpressionParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byJPPExpressionParser.comparisonExpression()
.Visit a parse tree produced byJPPExpressionParser.definedExpression()
.Visit a parse tree produced byJPPExpressionParser.expression()
.Visit a parse tree produced byJPPExpressionParser.logicalAndExpression()
.Visit a parse tree produced byJPPExpressionParser.logicalOrExpression()
.Visit a parse tree produced byJPPExpressionParser.operand()
.Visit a parse tree produced byJPPExpressionParser.primaryExpression()
.Visit a parse tree produced byJPPExpressionParser.propertyExpression()
.Visit a parse tree produced byJPPExpressionParser.unaryOperator()
.Visit a parse tree produced byJPPExpressionParser.undefinedExpression()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitExpression
Visit a parse tree produced byJPPExpressionParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLogicalOrExpression
Visit a parse tree produced byJPPExpressionParser.logicalOrExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLogicalAndExpression
Visit a parse tree produced byJPPExpressionParser.logicalAndExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPrimaryExpression
Visit a parse tree produced byJPPExpressionParser.primaryExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitComparisonExpression
Visit a parse tree produced byJPPExpressionParser.comparisonExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitOperand
Visit a parse tree produced byJPPExpressionParser.operand()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDefinedExpression
Visit a parse tree produced byJPPExpressionParser.definedExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitUndefinedExpression
Visit a parse tree produced byJPPExpressionParser.undefinedExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPropertyExpression
Visit a parse tree produced byJPPExpressionParser.propertyExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitUnaryOperator
Visit a parse tree produced byJPPExpressionParser.unaryOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-