Class MacrosBaseListener
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener,MacrosListener
MacrosListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byMacrosParser.body().voidEnter a parse tree produced byMacrosParser.emptyMacros().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidEnter a parse tree produced byMacrosParser.macroArg().voidEnter a parse tree produced byMacrosParser.macroParam().voidEnter a parse tree produced byMacrosParser.macroParams().voidEnter a parse tree produced byMacrosParser.macros().voidEnter a parse tree produced byMacrosParser.macrosEnd().voidEnter a parse tree produced byMacrosParser.macrosStart().voidEnter a parse tree produced byMacrosParser.quote().voidEnter a parse tree produced byMacrosParser.slash().voidEnter a parse tree produced byMacrosParser.text().voidExit a parse tree produced byMacrosParser.body().voidExit a parse tree produced byMacrosParser.emptyMacros().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidExit a parse tree produced byMacrosParser.macroArg().voidExit a parse tree produced byMacrosParser.macroParam().voidExit a parse tree produced byMacrosParser.macroParams().voidExit a parse tree produced byMacrosParser.macros().voidExit a parse tree produced byMacrosParser.macrosEnd().voidExit a parse tree produced byMacrosParser.macrosStart().voidExit a parse tree produced byMacrosParser.quote().voidExit a parse tree produced byMacrosParser.slash().voidExit a parse tree produced byMacrosParser.text().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
MacrosBaseListener
public MacrosBaseListener()
-
-
Method Details
-
enterBody
Enter a parse tree produced byMacrosParser.body().The default implementation does nothing.
- Specified by:
enterBodyin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitBody
Exit a parse tree produced byMacrosParser.body().The default implementation does nothing.
- Specified by:
exitBodyin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterEmptyMacros
Enter a parse tree produced byMacrosParser.emptyMacros().The default implementation does nothing.
- Specified by:
enterEmptyMacrosin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitEmptyMacros
Exit a parse tree produced byMacrosParser.emptyMacros().The default implementation does nothing.
- Specified by:
exitEmptyMacrosin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterMacros
Enter a parse tree produced byMacrosParser.macros().The default implementation does nothing.
- Specified by:
enterMacrosin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitMacros
Exit a parse tree produced byMacrosParser.macros().The default implementation does nothing.
- Specified by:
exitMacrosin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterMacroParams
Enter a parse tree produced byMacrosParser.macroParams().The default implementation does nothing.
- Specified by:
enterMacroParamsin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitMacroParams
Exit a parse tree produced byMacrosParser.macroParams().The default implementation does nothing.
- Specified by:
exitMacroParamsin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterMacroParam
Enter a parse tree produced byMacrosParser.macroParam().The default implementation does nothing.
- Specified by:
enterMacroParamin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitMacroParam
Exit a parse tree produced byMacrosParser.macroParam().The default implementation does nothing.
- Specified by:
exitMacroParamin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterMacroArg
Enter a parse tree produced byMacrosParser.macroArg().The default implementation does nothing.
- Specified by:
enterMacroArgin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitMacroArg
Exit a parse tree produced byMacrosParser.macroArg().The default implementation does nothing.
- Specified by:
exitMacroArgin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterMacrosStart
Enter a parse tree produced byMacrosParser.macrosStart().The default implementation does nothing.
- Specified by:
enterMacrosStartin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitMacrosStart
Exit a parse tree produced byMacrosParser.macrosStart().The default implementation does nothing.
- Specified by:
exitMacrosStartin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterMacrosEnd
Enter a parse tree produced byMacrosParser.macrosEnd().The default implementation does nothing.
- Specified by:
enterMacrosEndin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitMacrosEnd
Exit a parse tree produced byMacrosParser.macrosEnd().The default implementation does nothing.
- Specified by:
exitMacrosEndin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterQuote
Enter a parse tree produced byMacrosParser.quote().The default implementation does nothing.
- Specified by:
enterQuotein interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitQuote
Exit a parse tree produced byMacrosParser.quote().The default implementation does nothing.
- Specified by:
exitQuotein interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterSlash
Enter a parse tree produced byMacrosParser.slash().The default implementation does nothing.
- Specified by:
enterSlashin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitSlash
Exit a parse tree produced byMacrosParser.slash().The default implementation does nothing.
- Specified by:
exitSlashin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterText
Enter a parse tree produced byMacrosParser.text().The default implementation does nothing.
- Specified by:
enterTextin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
exitText
Exit a parse tree produced byMacrosParser.text().The default implementation does nothing.
- Specified by:
exitTextin interfaceMacrosListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-