Class DescriptionStepBaseVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for 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, visitTerminal
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods 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:
visitParse
in 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:
visitExpr
in 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:
visitKeywordExpression
in 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:
visitSetExpression
in 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:
visitFunctionDeclarationExpression
in 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:
visitFunctionDeclarationEndExpression
in 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:
visitAssignment
in 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:
visitKeywordParameter
in 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:
visitKeywordName
in 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:
visitAttributeName
in 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:
visitAttributeValue
in 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:
visitSetValue
in interfaceDescriptionStepVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-