Interface SightlyParserListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
SightlyParserBaseListener
public interface SightlyParserListener extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced bySightlyParser
.
-
-
Method Summary
-
-
-
Method Detail
-
enterInterpolation
void enterInterpolation(SightlyParser.InterpolationContext ctx)
Enter a parse tree produced bySightlyParser.interpolation()
.- Parameters:
ctx
- the parse tree
-
exitInterpolation
void exitInterpolation(SightlyParser.InterpolationContext ctx)
Exit a parse tree produced bySightlyParser.interpolation()
.- Parameters:
ctx
- the parse tree
-
enterTextFrag
void enterTextFrag(SightlyParser.TextFragContext ctx)
Enter a parse tree produced bySightlyParser.textFrag()
.- Parameters:
ctx
- the parse tree
-
exitTextFrag
void exitTextFrag(SightlyParser.TextFragContext ctx)
Exit a parse tree produced bySightlyParser.textFrag()
.- Parameters:
ctx
- the parse tree
-
enterExpression
void enterExpression(SightlyParser.ExpressionContext ctx)
Enter a parse tree produced bySightlyParser.expression()
.- Parameters:
ctx
- the parse tree
-
exitExpression
void exitExpression(SightlyParser.ExpressionContext ctx)
Exit a parse tree produced bySightlyParser.expression()
.- Parameters:
ctx
- the parse tree
-
enterOptionList
void enterOptionList(SightlyParser.OptionListContext ctx)
Enter a parse tree produced bySightlyParser.optionList()
.- Parameters:
ctx
- the parse tree
-
exitOptionList
void exitOptionList(SightlyParser.OptionListContext ctx)
Exit a parse tree produced bySightlyParser.optionList()
.- Parameters:
ctx
- the parse tree
-
enterOption
void enterOption(SightlyParser.OptionContext ctx)
Enter a parse tree produced bySightlyParser.option()
.- Parameters:
ctx
- the parse tree
-
exitOption
void exitOption(SightlyParser.OptionContext ctx)
Exit a parse tree produced bySightlyParser.option()
.- Parameters:
ctx
- the parse tree
-
enterExprNode
void enterExprNode(SightlyParser.ExprNodeContext ctx)
Enter a parse tree produced bySightlyParser.exprNode()
.- Parameters:
ctx
- the parse tree
-
exitExprNode
void exitExprNode(SightlyParser.ExprNodeContext ctx)
Exit a parse tree produced bySightlyParser.exprNode()
.- Parameters:
ctx
- the parse tree
-
enterOrBinaryOp
void enterOrBinaryOp(SightlyParser.OrBinaryOpContext ctx)
Enter a parse tree produced bySightlyParser.orBinaryOp()
.- Parameters:
ctx
- the parse tree
-
exitOrBinaryOp
void exitOrBinaryOp(SightlyParser.OrBinaryOpContext ctx)
Exit a parse tree produced bySightlyParser.orBinaryOp()
.- Parameters:
ctx
- the parse tree
-
enterAndBinaryOp
void enterAndBinaryOp(SightlyParser.AndBinaryOpContext ctx)
Enter a parse tree produced bySightlyParser.andBinaryOp()
.- Parameters:
ctx
- the parse tree
-
exitAndBinaryOp
void exitAndBinaryOp(SightlyParser.AndBinaryOpContext ctx)
Exit a parse tree produced bySightlyParser.andBinaryOp()
.- Parameters:
ctx
- the parse tree
-
enterInBinaryOp
void enterInBinaryOp(SightlyParser.InBinaryOpContext ctx)
Enter a parse tree produced bySightlyParser.inBinaryOp()
.- Parameters:
ctx
- the parse tree
-
exitInBinaryOp
void exitInBinaryOp(SightlyParser.InBinaryOpContext ctx)
Exit a parse tree produced bySightlyParser.inBinaryOp()
.- Parameters:
ctx
- the parse tree
-
enterComparisonTerm
void enterComparisonTerm(SightlyParser.ComparisonTermContext ctx)
Enter a parse tree produced bySightlyParser.comparisonTerm()
.- Parameters:
ctx
- the parse tree
-
exitComparisonTerm
void exitComparisonTerm(SightlyParser.ComparisonTermContext ctx)
Exit a parse tree produced bySightlyParser.comparisonTerm()
.- Parameters:
ctx
- the parse tree
-
enterComparisonOp
void enterComparisonOp(SightlyParser.ComparisonOpContext ctx)
Enter a parse tree produced bySightlyParser.comparisonOp()
.- Parameters:
ctx
- the parse tree
-
exitComparisonOp
void exitComparisonOp(SightlyParser.ComparisonOpContext ctx)
Exit a parse tree produced bySightlyParser.comparisonOp()
.- Parameters:
ctx
- the parse tree
-
enterFactor
void enterFactor(SightlyParser.FactorContext ctx)
Enter a parse tree produced bySightlyParser.factor()
.- Parameters:
ctx
- the parse tree
-
exitFactor
void exitFactor(SightlyParser.FactorContext ctx)
Exit a parse tree produced bySightlyParser.factor()
.- Parameters:
ctx
- the parse tree
-
enterTerm
void enterTerm(SightlyParser.TermContext ctx)
Enter a parse tree produced bySightlyParser.term()
.- Parameters:
ctx
- the parse tree
-
exitTerm
void exitTerm(SightlyParser.TermContext ctx)
Exit a parse tree produced bySightlyParser.term()
.- Parameters:
ctx
- the parse tree
-
enterField
void enterField(SightlyParser.FieldContext ctx)
Enter a parse tree produced bySightlyParser.field()
.- Parameters:
ctx
- the parse tree
-
exitField
void exitField(SightlyParser.FieldContext ctx)
Exit a parse tree produced bySightlyParser.field()
.- Parameters:
ctx
- the parse tree
-
enterSimple
void enterSimple(SightlyParser.SimpleContext ctx)
Enter a parse tree produced bySightlyParser.simple()
.- Parameters:
ctx
- the parse tree
-
exitSimple
void exitSimple(SightlyParser.SimpleContext ctx)
Exit a parse tree produced bySightlyParser.simple()
.- Parameters:
ctx
- the parse tree
-
enterValueList
void enterValueList(SightlyParser.ValueListContext ctx)
Enter a parse tree produced bySightlyParser.valueList()
.- Parameters:
ctx
- the parse tree
-
exitValueList
void exitValueList(SightlyParser.ValueListContext ctx)
Exit a parse tree produced bySightlyParser.valueList()
.- Parameters:
ctx
- the parse tree
-
enterAtom
void enterAtom(SightlyParser.AtomContext ctx)
Enter a parse tree produced bySightlyParser.atom()
.- Parameters:
ctx
- the parse tree
-
exitAtom
void exitAtom(SightlyParser.AtomContext ctx)
Exit a parse tree produced bySightlyParser.atom()
.- Parameters:
ctx
- the parse tree
-
enterStringConst
void enterStringConst(SightlyParser.StringConstContext ctx)
Enter a parse tree produced bySightlyParser.stringConst()
.- Parameters:
ctx
- the parse tree
-
exitStringConst
void exitStringConst(SightlyParser.StringConstContext ctx)
Exit a parse tree produced bySightlyParser.stringConst()
.- Parameters:
ctx
- the parse tree
-
-