Package com.fizzed.rocker.antlr4
Interface WithBlockParserListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
WithBlockParserBaseListener,WithBlockParserListener
public interface WithBlockParserListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
WithBlockParser.-
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byWithBlockParser.start().voidEnter a parse tree produced byWithBlockParser.withArguments().voidExit a parse tree produced byWithBlockParser.start().voidExit a parse tree produced byWithBlockParser.withArguments().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterStart
Enter a parse tree produced byWithBlockParser.start().- Parameters:
ctx- the parse tree
-
exitStart
Exit a parse tree produced byWithBlockParser.start().- Parameters:
ctx- the parse tree
-
enterWithArguments
Enter a parse tree produced byWithBlockParser.withArguments().- Parameters:
ctx- the parse tree
-
exitWithArguments
Exit a parse tree produced byWithBlockParser.withArguments().- Parameters:
ctx- the parse tree
-