Interface ExpectedStepVisitor<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:
CustomExpectedStepParser.Visitor
,ExpectedStepBaseVisitor
public interface ExpectedStepVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced byExpectedStepParser
.
-
-
Method Summary
-
-
-
Method Detail
-
visitParse
T visitParse(ExpectedStepParser.ParseContext ctx)
Visit a parse tree produced byExpectedStepParser.parse()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpr
T visitExpr(ExpectedStepParser.ExprContext ctx)
Visit a parse tree produced byExpectedStepParser.expr()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCheckExpr
T visitCheckExpr(ExpectedStepParser.CheckExprContext ctx)
Visit a parse tree produced by thecheckExpr
labeled alternative inExpectedStepParser.checkExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSetExpression
T visitSetExpression(ExpectedStepParser.SetExpressionContext ctx)
Visit a parse tree produced byExpectedStepParser.setExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAssignment
T visitAssignment(ExpectedStepParser.AssignmentContext ctx)
Visit a parse tree produced byExpectedStepParser.assignment()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExportExpression
T visitExportExpression(ExpectedStepParser.ExportExpressionContext ctx)
Visit a parse tree produced byExpectedStepParser.exportExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitControlParameter
T visitControlParameter(ExpectedStepParser.ControlParameterContext ctx)
Visit a parse tree produced byExpectedStepParser.controlParameter()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitOutputAttributeName
T visitOutputAttributeName(ExpectedStepParser.OutputAttributeNameContext ctx)
Visit a parse tree produced byExpectedStepParser.outputAttributeName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeName
T visitAttributeName(ExpectedStepParser.AttributeNameContext ctx)
Visit a parse tree produced byExpectedStepParser.attributeName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSetValue
T visitSetValue(ExpectedStepParser.SetValueContext ctx)
Visit a parse tree produced byExpectedStepParser.setValue()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeValue
T visitAttributeValue(ExpectedStepParser.AttributeValueContext ctx)
Visit a parse tree produced byExpectedStepParser.attributeValue()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-