Class ExpectedStepBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>,ExpectedStepVisitor<T>
- Direct Known Subclasses:
CustomExpectedStepParser.Visitor
ExpectedStepVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byExpectedStepParser.assignment().Visit a parse tree produced byExpectedStepParser.attributeName().Visit a parse tree produced byExpectedStepParser.attributeValue().Visit a parse tree produced by thecheckExprlabeled alternative inExpectedStepParser.checkExpression().Visit a parse tree produced byExpectedStepParser.controlParameter().Visit a parse tree produced byExpectedStepParser.exportExpression().Visit a parse tree produced byExpectedStepParser.expr().Visit a parse tree produced byExpectedStepParser.outputAttributeName().Visit a parse tree produced byExpectedStepParser.parse().Visit a parse tree produced byExpectedStepParser.setExpression().Visit a parse tree produced byExpectedStepParser.setValue().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
ExpectedStepBaseVisitor
public ExpectedStepBaseVisitor()
-
-
Method Details
-
visitParse
Visit a parse tree produced byExpectedStepParser.parse().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParsein interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpr
Visit a parse tree produced byExpectedStepParser.expr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExprin interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckExpr
Visit a parse tree produced by thecheckExprlabeled alternative inExpectedStepParser.checkExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCheckExprin interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetExpression
Visit a parse tree produced byExpectedStepParser.setExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetExpressionin interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
Visit a parse tree produced byExpectedStepParser.assignment().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAssignmentin interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExportExpression
Visit a parse tree produced byExpectedStepParser.exportExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExportExpressionin interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitControlParameter
Visit a parse tree produced byExpectedStepParser.controlParameter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitControlParameterin interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOutputAttributeName
Visit a parse tree produced byExpectedStepParser.outputAttributeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOutputAttributeNamein interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeName
Visit a parse tree produced byExpectedStepParser.attributeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributeNamein interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetValue
Visit a parse tree produced byExpectedStepParser.setValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetValuein interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeValue
Visit a parse tree produced byExpectedStepParser.attributeValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributeValuein interfaceExpectedStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-