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
by
SnpSiftParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced bySnpSiftParser.compilationUnit()
.Visit a parse tree produced by theexpressionComp
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionCond
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionExists
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionLogic
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionParen
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionPlus
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionSet
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionTimes
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theexpressionUnary
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by thefunctionCall
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theliteralBool
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theliteralFloat
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theliteralIndex
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theliteralInt
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by theliteralString
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by thevarReference
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by thevarReferenceList
labeled alternative inSnpSiftParser.expression()
.Visit a parse tree produced by thevarReferenceListSub
labeled alternative inSnpSiftParser.expression()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitCompilationUnit
Visit a parse tree produced bySnpSiftParser.compilationUnit()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionSet
Visit a parse tree produced by theexpressionSet
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralString
Visit a parse tree produced by theliteralString
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionUnary
Visit a parse tree produced by theexpressionUnary
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionComp
Visit a parse tree produced by theexpressionComp
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralBool
Visit a parse tree produced by theliteralBool
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVarReferenceList
Visit a parse tree produced by thevarReferenceList
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralFloat
Visit a parse tree produced by theliteralFloat
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralIndex
Visit a parse tree produced by theliteralIndex
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVarReference
Visit a parse tree produced by thevarReference
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVarReferenceListSub
Visit a parse tree produced by thevarReferenceListSub
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionTimes
Visit a parse tree produced by theexpressionTimes
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionExists
Visit a parse tree produced by theexpressionExists
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionPlus
Visit a parse tree produced by theexpressionPlus
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionLogic
Visit a parse tree produced by theexpressionLogic
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFunctionCall
Visit a parse tree produced by thefunctionCall
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionParen
Visit a parse tree produced by theexpressionParen
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpressionCond
Visit a parse tree produced by theexpressionCond
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralInt
Visit a parse tree produced by theliteralInt
labeled alternative inSnpSiftParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-