Package eu.webtoolkit.jwt
Interface PluralExpressionVisitor<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:
PluralExpressionBaseVisitor
public interface PluralExpressionVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
PluralExpressionParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byPluralExpressionParser.additiveExpression()
.Visit a parse tree produced byPluralExpressionParser.andExpression()
.Visit a parse tree produced byPluralExpressionParser.cmpOperator()
.Visit a parse tree produced byPluralExpressionParser.eqExpression()
.Visit a parse tree produced byPluralExpressionParser.eqOperator()
.Visit a parse tree produced byPluralExpressionParser.expression()
.Visit a parse tree produced byPluralExpressionParser.factor()
.Visit a parse tree produced byPluralExpressionParser.group()
.Visit a parse tree produced byPluralExpressionParser.literal()
.Visit a parse tree produced byPluralExpressionParser.orExpression()
.Visit a parse tree produced byPluralExpressionParser.prodOperator()
.Visit a parse tree produced byPluralExpressionParser.relationalExpression()
.Visit a parse tree produced byPluralExpressionParser.statement()
.Visit a parse tree produced byPluralExpressionParser.sumOperator()
.Visit a parse tree produced byPluralExpressionParser.term()
.Visit a parse tree produced byPluralExpressionParser.variable()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitStatement
Visit a parse tree produced byPluralExpressionParser.statement()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced byPluralExpressionParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitOrExpression
Visit a parse tree produced byPluralExpressionParser.orExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAndExpression
Visit a parse tree produced byPluralExpressionParser.andExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEqExpression
Visit a parse tree produced byPluralExpressionParser.eqExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRelationalExpression
Visit a parse tree produced byPluralExpressionParser.relationalExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAdditiveExpression
Visit a parse tree produced byPluralExpressionParser.additiveExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTerm
Visit a parse tree produced byPluralExpressionParser.term()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFactor
Visit a parse tree produced byPluralExpressionParser.factor()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteral
Visit a parse tree produced byPluralExpressionParser.literal()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitGroup
Visit a parse tree produced byPluralExpressionParser.group()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVariable
Visit a parse tree produced byPluralExpressionParser.variable()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEqOperator
Visit a parse tree produced byPluralExpressionParser.eqOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCmpOperator
Visit a parse tree produced byPluralExpressionParser.cmpOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSumOperator
Visit a parse tree produced byPluralExpressionParser.sumOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitProdOperator
Visit a parse tree produced byPluralExpressionParser.prodOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-