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
by
DescriptionStepParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byDescriptionStepParser.assignment().Visit a parse tree produced byDescriptionStepParser.attributeName().Visit a parse tree produced byDescriptionStepParser.attributeValue().Visit a parse tree produced byDescriptionStepParser.expr().visitFunctionDeclarationEndExpression(DescriptionStepParser.FunctionDeclarationEndExpressionContext ctx) Visit a parse tree produced byDescriptionStepParser.functionDeclarationEndExpression().Visit a parse tree produced byDescriptionStepParser.functionDeclarationExpression().Visit a parse tree produced byDescriptionStepParser.keywordExpression().Visit a parse tree produced byDescriptionStepParser.keywordName().Visit a parse tree produced byDescriptionStepParser.keywordParameter().Visit a parse tree produced byDescriptionStepParser.parse().Visit a parse tree produced byDescriptionStepParser.setExpression().Visit a parse tree produced byDescriptionStepParser.setValue().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitParse
Visit a parse tree produced byDescriptionStepParser.parse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpr
Visit a parse tree produced byDescriptionStepParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordExpression
Visit a parse tree produced byDescriptionStepParser.keywordExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetExpression
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
Visit a parse tree produced byDescriptionStepParser.assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordParameter
Visit a parse tree produced byDescriptionStepParser.keywordParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordName
Visit a parse tree produced byDescriptionStepParser.keywordName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeName
Visit a parse tree produced byDescriptionStepParser.attributeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeValue
Visit a parse tree produced byDescriptionStepParser.attributeValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetValue
Visit a parse tree produced byDescriptionStepParser.setValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-