Package org.snpsift.antlr
Interface SnpSiftVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor 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 theexpressionComplabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionCondlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionExistslabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionLogiclabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionParenlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionPluslabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionSetlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionTimeslabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theexpressionUnarylabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by thefunctionCalllabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theliteralBoollabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theliteralFloatlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theliteralIndexlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theliteralIntlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by theliteralStringlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by thevarReferencelabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by thevarReferenceListlabeled alternative inSnpSiftParser.expression().Visit a parse tree produced by thevarReferenceListSublabeled 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 theexpressionSetlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralString
Visit a parse tree produced by theliteralStringlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionUnary
Visit a parse tree produced by theexpressionUnarylabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionComp
Visit a parse tree produced by theexpressionComplabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralBool
Visit a parse tree produced by theliteralBoollabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarReferenceList
Visit a parse tree produced by thevarReferenceListlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralFloat
Visit a parse tree produced by theliteralFloatlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralIndex
Visit a parse tree produced by theliteralIndexlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarReference
Visit a parse tree produced by thevarReferencelabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarReferenceListSub
Visit a parse tree produced by thevarReferenceListSublabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionTimes
Visit a parse tree produced by theexpressionTimeslabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionExists
Visit a parse tree produced by theexpressionExistslabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionPlus
Visit a parse tree produced by theexpressionPluslabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionLogic
Visit a parse tree produced by theexpressionLogiclabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionCall
Visit a parse tree produced by thefunctionCalllabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionParen
Visit a parse tree produced by theexpressionParenlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionCond
Visit a parse tree produced by theexpressionCondlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralInt
Visit a parse tree produced by theliteralIntlabeled alternative inSnpSiftParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-