com.xlrit.gears.runner.scenario.ScenarioVisitor Maven / Gradle / Ivy
The newest version!
// Generated from com/xlrit/gears/runner/scenario/Scenario.g4 by ANTLR 4.13.1
package com.xlrit.gears.runner.scenario;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link ScenarioParser}.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface ScenarioVisitor extends ParseTreeVisitor {
/**
* Visit a parse tree produced by {@link ScenarioParser#startStatements}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitStartStatements(ScenarioParser.StartStatementsContext ctx);
/**
* Visit a parse tree produced by the {@code withUserStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitWithUserStatement(ScenarioParser.WithUserStatementContext ctx);
/**
* Visit a parse tree produced by the {@code startProcessStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitStartProcessStatement(ScenarioParser.StartProcessStatementContext ctx);
/**
* Visit a parse tree produced by the {@code processCompleteStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitProcessCompleteStatement(ScenarioParser.ProcessCompleteStatementContext ctx);
/**
* Visit a parse tree produced by the {@code letIsStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitLetIsStatement(ScenarioParser.LetIsStatementContext ctx);
/**
* Visit a parse tree produced by the {@code letFromStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitLetFromStatement(ScenarioParser.LetFromStatementContext ctx);
/**
* Visit a parse tree produced by the {@code assertStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitAssertStatement(ScenarioParser.AssertStatementContext ctx);
/**
* Visit a parse tree produced by the {@code claimTaskStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitClaimTaskStatement(ScenarioParser.ClaimTaskStatementContext ctx);
/**
* Visit a parse tree produced by the {@code transferTaskStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTransferTaskStatement(ScenarioParser.TransferTaskStatementContext ctx);
/**
* Visit a parse tree produced by the {@code submitTaskStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitSubmitTaskStatement(ScenarioParser.SubmitTaskStatementContext ctx);
/**
* Visit a parse tree produced by the {@code setDateTimeStatement}
* labeled alternative in {@link ScenarioParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitSetDateTimeStatement(ScenarioParser.SetDateTimeStatementContext ctx);
/**
* Visit a parse tree produced by {@link ScenarioParser#taskExpr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTaskExpr(ScenarioParser.TaskExprContext ctx);
/**
* Visit a parse tree produced by the {@code boolCompExpression}
* labeled alternative in {@link ScenarioParser#boolExpr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitBoolCompExpression(ScenarioParser.BoolCompExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code boolGrqlExpression}
* labeled alternative in {@link ScenarioParser#boolExpr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitBoolGrqlExpression(ScenarioParser.BoolGrqlExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code grqlExpression}
* labeled alternative in {@link ScenarioParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitGrqlExpression(ScenarioParser.GrqlExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code objectExpression}
* labeled alternative in {@link ScenarioParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitObjectExpression(ScenarioParser.ObjectExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code listExpression}
* labeled alternative in {@link ScenarioParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitListExpression(ScenarioParser.ListExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code theExpression}
* labeled alternative in {@link ScenarioParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTheExpression(ScenarioParser.TheExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code literalExpression}
* labeled alternative in {@link ScenarioParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitLiteralExpression(ScenarioParser.LiteralExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code fileExpression}
* labeled alternative in {@link ScenarioParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitFileExpression(ScenarioParser.FileExpressionContext ctx);
/**
* Visit a parse tree produced by the {@code identifierExpression}
* labeled alternative in {@link ScenarioParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitIdentifierExpression(ScenarioParser.IdentifierExpressionContext ctx);
/**
* Visit a parse tree produced by {@link ScenarioParser#objectExpr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitObjectExpr(ScenarioParser.ObjectExprContext ctx);
/**
* Visit a parse tree produced by {@link ScenarioParser#objectEntry}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitObjectEntry(ScenarioParser.ObjectEntryContext ctx);
/**
* Visit a parse tree produced by {@link ScenarioParser#listExpr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitListExpr(ScenarioParser.ListExprContext ctx);
/**
* Visit a parse tree produced by {@link ScenarioParser#optionalTrailingComma}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitOptionalTrailingComma(ScenarioParser.OptionalTrailingCommaContext ctx);
/**
* Visit a parse tree produced by {@link ScenarioParser#literalExpr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitLiteralExpr(ScenarioParser.LiteralExprContext ctx);
}