Interface MablSwapConditionParserVisitor<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:
MablSwapConditionParserBaseVisitor
public interface MablSwapConditionParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byMablSwapConditionParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitIdentifierStateDesignator
T visitIdentifierStateDesignator(MablSwapConditionParser.IdentifierStateDesignatorContext ctx)
Visit a parse tree produced by theidentifierStateDesignatorlabeled alternative inMablSwapConditionParser.stateDesignator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayStateDesignator
T visitArrayStateDesignator(MablSwapConditionParser.ArrayStateDesignatorContext ctx)
Visit a parse tree produced by thearrayStateDesignatorlabeled alternative inMablSwapConditionParser.stateDesignator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpTest
T visitExpTest(MablSwapConditionParser.ExpTestContext ctx)
Visit a parse tree produced byMablSwapConditionParser.expTest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifierExp
T visitIdentifierExp(MablSwapConditionParser.IdentifierExpContext ctx)
Visit a parse tree produced by theidentifierExplabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralExp
T visitLiteralExp(MablSwapConditionParser.LiteralExpContext ctx)
Visit a parse tree produced by theliteralExplabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDotPrefixExp
T visitDotPrefixExp(MablSwapConditionParser.DotPrefixExpContext ctx)
Visit a parse tree produced by thedotPrefixExplabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryExp
T visitBinaryExp(MablSwapConditionParser.BinaryExpContext ctx)
Visit a parse tree produced by thebinaryExplabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryExp
T visitUnaryExp(MablSwapConditionParser.UnaryExpContext ctx)
Visit a parse tree produced by theunaryExplabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPlainMetodExp
T visitPlainMetodExp(MablSwapConditionParser.PlainMetodExpContext ctx)
Visit a parse tree produced by theplainMetodExplabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenExp
T visitParenExp(MablSwapConditionParser.ParenExpContext ctx)
Visit a parse tree produced by theparenExplabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayIndex
T visitArrayIndex(MablSwapConditionParser.ArrayIndexContext ctx)
Visit a parse tree produced by thearrayIndexlabeled alternative inMablSwapConditionParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionList
T visitExpressionList(MablSwapConditionParser.ExpressionListContext ctx)
Visit a parse tree produced byMablSwapConditionParser.expressionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodCall
T visitMethodCall(MablSwapConditionParser.MethodCallContext ctx)
Visit a parse tree produced byMablSwapConditionParser.methodCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParExpression
T visitParExpression(MablSwapConditionParser.ParExpressionContext ctx)
Visit a parse tree produced byMablSwapConditionParser.parExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteral
T visitLiteral(MablSwapConditionParser.LiteralContext ctx)
Visit a parse tree produced byMablSwapConditionParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-