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.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byWithBlockParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterStart(WithBlockParser.StartContext ctx)Enter a parse tree produced byWithBlockParser.start().voidenterWithArguments(WithBlockParser.WithArgumentsContext ctx)Enter a parse tree produced byWithBlockParser.withArguments().voidexitStart(WithBlockParser.StartContext ctx)Exit a parse tree produced byWithBlockParser.start().voidexitWithArguments(WithBlockParser.WithArgumentsContext ctx)Exit a parse tree produced byWithBlockParser.withArguments().
-
-
-
Method Detail
-
enterStart
void enterStart(WithBlockParser.StartContext ctx)
Enter a parse tree produced byWithBlockParser.start().- Parameters:
ctx- the parse tree
-
exitStart
void exitStart(WithBlockParser.StartContext ctx)
Exit a parse tree produced byWithBlockParser.start().- Parameters:
ctx- the parse tree
-
enterWithArguments
void enterWithArguments(WithBlockParser.WithArgumentsContext ctx)
Enter a parse tree produced byWithBlockParser.withArguments().- Parameters:
ctx- the parse tree
-
exitWithArguments
void exitWithArguments(WithBlockParser.WithArgumentsContext ctx)
Exit a parse tree produced byWithBlockParser.withArguments().- Parameters:
ctx- the parse tree
-
-