Package org.snpsift.antlr
Interface SnpSiftVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
SnpSiftBaseVisitor
public interface SnpSiftVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced bySnpSiftParser
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
visitCompilationUnit(SnpSiftParser.CompilationUnitContext ctx)
Visit a parse tree produced bySnpSiftParser.compilationUnit()
.T
visitExpressionComp(SnpSiftParser.ExpressionCompContext ctx)
Visit a parse tree produced by theexpressionComp
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionCond(SnpSiftParser.ExpressionCondContext ctx)
Visit a parse tree produced by theexpressionCond
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionExists(SnpSiftParser.ExpressionExistsContext ctx)
Visit a parse tree produced by theexpressionExists
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionLogic(SnpSiftParser.ExpressionLogicContext ctx)
Visit a parse tree produced by theexpressionLogic
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionParen(SnpSiftParser.ExpressionParenContext ctx)
Visit a parse tree produced by theexpressionParen
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionPlus(SnpSiftParser.ExpressionPlusContext ctx)
Visit a parse tree produced by theexpressionPlus
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionSet(SnpSiftParser.ExpressionSetContext ctx)
Visit a parse tree produced by theexpressionSet
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionTimes(SnpSiftParser.ExpressionTimesContext ctx)
Visit a parse tree produced by theexpressionTimes
labeled alternative inSnpSiftParser.expression()
.T
visitExpressionUnary(SnpSiftParser.ExpressionUnaryContext ctx)
Visit a parse tree produced by theexpressionUnary
labeled alternative inSnpSiftParser.expression()
.T
visitFunctionCall(SnpSiftParser.FunctionCallContext ctx)
Visit a parse tree produced by thefunctionCall
labeled alternative inSnpSiftParser.expression()
.T
visitLiteralBool(SnpSiftParser.LiteralBoolContext ctx)
Visit a parse tree produced by theliteralBool
labeled alternative inSnpSiftParser.expression()
.T
visitLiteralFloat(SnpSiftParser.LiteralFloatContext ctx)
Visit a parse tree produced by theliteralFloat
labeled alternative inSnpSiftParser.expression()
.T
visitLiteralIndex(SnpSiftParser.LiteralIndexContext ctx)
Visit a parse tree produced by theliteralIndex
labeled alternative inSnpSiftParser.expression()
.T
visitLiteralInt(SnpSiftParser.LiteralIntContext ctx)
Visit a parse tree produced by theliteralInt
labeled alternative inSnpSiftParser.expression()
.T
visitLiteralString(SnpSiftParser.LiteralStringContext ctx)
Visit a parse tree produced by theliteralString
labeled alternative inSnpSiftParser.expression()
.T
visitVarReference(SnpSiftParser.VarReferenceContext ctx)
Visit a parse tree produced by thevarReference
labeled alternative inSnpSiftParser.expression()
.T
visitVarReferenceList(SnpSiftParser.VarReferenceListContext ctx)
Visit a parse tree produced by thevarReferenceList
labeled alternative inSnpSiftParser.expression()
.T
visitVarReferenceListSub(SnpSiftParser.VarReferenceListSubContext ctx)
Visit a parse tree produced by thevarReferenceListSub
labeled alternative inSnpSiftParser.expression()
.
-
-
-
Method Detail
-
visitCompilationUnit
T visitCompilationUnit(SnpSiftParser.CompilationUnitContext ctx)
Visit a parse tree produced bySnpSiftParser.compilationUnit()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionSet
T visitExpressionSet(SnpSiftParser.ExpressionSetContext ctx)
Visit a parse tree produced by theexpressionSet
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralString
T visitLiteralString(SnpSiftParser.LiteralStringContext ctx)
Visit a parse tree produced by theliteralString
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionUnary
T visitExpressionUnary(SnpSiftParser.ExpressionUnaryContext ctx)
Visit a parse tree produced by theexpressionUnary
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionComp
T visitExpressionComp(SnpSiftParser.ExpressionCompContext ctx)
Visit a parse tree produced by theexpressionComp
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralBool
T visitLiteralBool(SnpSiftParser.LiteralBoolContext ctx)
Visit a parse tree produced by theliteralBool
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVarReferenceList
T visitVarReferenceList(SnpSiftParser.VarReferenceListContext ctx)
Visit a parse tree produced by thevarReferenceList
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralFloat
T visitLiteralFloat(SnpSiftParser.LiteralFloatContext ctx)
Visit a parse tree produced by theliteralFloat
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralIndex
T visitLiteralIndex(SnpSiftParser.LiteralIndexContext ctx)
Visit a parse tree produced by theliteralIndex
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVarReference
T visitVarReference(SnpSiftParser.VarReferenceContext ctx)
Visit a parse tree produced by thevarReference
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVarReferenceListSub
T visitVarReferenceListSub(SnpSiftParser.VarReferenceListSubContext ctx)
Visit a parse tree produced by thevarReferenceListSub
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionTimes
T visitExpressionTimes(SnpSiftParser.ExpressionTimesContext ctx)
Visit a parse tree produced by theexpressionTimes
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionExists
T visitExpressionExists(SnpSiftParser.ExpressionExistsContext ctx)
Visit a parse tree produced by theexpressionExists
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionPlus
T visitExpressionPlus(SnpSiftParser.ExpressionPlusContext ctx)
Visit a parse tree produced by theexpressionPlus
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionLogic
T visitExpressionLogic(SnpSiftParser.ExpressionLogicContext ctx)
Visit a parse tree produced by theexpressionLogic
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFunctionCall
T visitFunctionCall(SnpSiftParser.FunctionCallContext ctx)
Visit a parse tree produced by thefunctionCall
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionParen
T visitExpressionParen(SnpSiftParser.ExpressionParenContext ctx)
Visit a parse tree produced by theexpressionParen
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionCond
T visitExpressionCond(SnpSiftParser.ExpressionCondContext ctx)
Visit a parse tree produced by theexpressionCond
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralInt
T visitLiteralInt(SnpSiftParser.LiteralIntContext ctx)
Visit a parse tree produced by theliteralInt
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-