Class DescriptionStepBaseVisitor<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>,DescriptionStepVisitor<T>
- Direct Known Subclasses:
CustomDescriptionStepParser.Visitor
DescriptionStepVisitor,
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 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 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
-
DescriptionStepBaseVisitor
public DescriptionStepBaseVisitor()
-
-
Method Details
-
visitParse
Visit a parse tree produced byDescriptionStepParser.parse().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParsein interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpr
Visit a parse tree produced byDescriptionStepParser.expr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExprin interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordExpression
Visit a parse tree produced byDescriptionStepParser.keywordExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeywordExpressionin interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetExpression
Visit a parse tree produced byDescriptionStepParser.setExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetExpressionin interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionDeclarationExpression
public T visitFunctionDeclarationExpression(DescriptionStepParser.FunctionDeclarationExpressionContext ctx) Visit a parse tree produced byDescriptionStepParser.functionDeclarationExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionDeclarationExpressionin interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionDeclarationEndExpression
public T visitFunctionDeclarationEndExpression(DescriptionStepParser.FunctionDeclarationEndExpressionContext ctx) Visit a parse tree produced byDescriptionStepParser.functionDeclarationEndExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionDeclarationEndExpressionin interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
Visit a parse tree produced byDescriptionStepParser.assignment().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAssignmentin interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordParameter
Visit a parse tree produced byDescriptionStepParser.keywordParameter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeywordParameterin interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordName
Visit a parse tree produced byDescriptionStepParser.keywordName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeywordNamein interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeName
Visit a parse tree produced byDescriptionStepParser.attributeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributeNamein interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeValue
Visit a parse tree produced byDescriptionStepParser.attributeValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributeValuein interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetValue
Visit a parse tree produced byDescriptionStepParser.setValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetValuein interfaceDescriptionStepVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-