Interface DescriptionStepVisitor<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:
CustomDescriptionStepParser.Visitor,DescriptionStepBaseVisitor
public interface DescriptionStepVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byDescriptionStepParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitParse
T visitParse(DescriptionStepParser.ParseContext ctx)
Visit a parse tree produced byDescriptionStepParser.parse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpr
T visitExpr(DescriptionStepParser.ExprContext ctx)
Visit a parse tree produced byDescriptionStepParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordExpression
T visitKeywordExpression(DescriptionStepParser.KeywordExpressionContext ctx)
Visit a parse tree produced byDescriptionStepParser.keywordExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetExpression
T visitSetExpression(DescriptionStepParser.SetExpressionContext ctx)
Visit a parse tree produced byDescriptionStepParser.setExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionDeclarationExpression
T visitFunctionDeclarationExpression(DescriptionStepParser.FunctionDeclarationExpressionContext ctx)
Visit a parse tree produced byDescriptionStepParser.functionDeclarationExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionDeclarationEndExpression
T visitFunctionDeclarationEndExpression(DescriptionStepParser.FunctionDeclarationEndExpressionContext ctx)
Visit a parse tree produced byDescriptionStepParser.functionDeclarationEndExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
T visitAssignment(DescriptionStepParser.AssignmentContext ctx)
Visit a parse tree produced byDescriptionStepParser.assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordParameter
T visitKeywordParameter(DescriptionStepParser.KeywordParameterContext ctx)
Visit a parse tree produced byDescriptionStepParser.keywordParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordName
T visitKeywordName(DescriptionStepParser.KeywordNameContext ctx)
Visit a parse tree produced byDescriptionStepParser.keywordName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeName
T visitAttributeName(DescriptionStepParser.AttributeNameContext ctx)
Visit a parse tree produced byDescriptionStepParser.attributeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeValue
T visitAttributeValue(DescriptionStepParser.AttributeValueContext ctx)
Visit a parse tree produced byDescriptionStepParser.attributeValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetValue
T visitSetValue(DescriptionStepParser.SetValueContext ctx)
Visit a parse tree produced byDescriptionStepParser.setValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-