Uses of Interface
org.antlr.v4.runtime.tree.ParseTreeListener
Packages that use ParseTreeListener
-
Uses of ParseTreeListener in org.antlr.v4.runtime
Classes in org.antlr.v4.runtime that implement ParseTreeListenerModifier and TypeClassDescriptionclassstatic classFields in org.antlr.v4.runtime with type parameters of type ParseTreeListenerModifier and TypeFieldDescriptionprotected List<ParseTreeListener> Parser._parseListenersThe list ofParseTreeListenerlisteners registered to receive events during the parse.Methods in org.antlr.v4.runtime that return types with arguments of type ParseTreeListenerMethods in org.antlr.v4.runtime with parameters of type ParseTreeListenerModifier and TypeMethodDescriptionvoidParser.addParseListener(ParseTreeListener listener) Registerslistenerto receive events during the parsing process.voidParserRuleContext.enterRule(ParseTreeListener listener) voidParserRuleContext.exitRule(ParseTreeListener listener) voidParser.removeParseListener(ParseTreeListener listener) Removelistenerfrom the list of parse listeners. -
Uses of ParseTreeListener in org.antlr.v4.runtime.tree
Methods in org.antlr.v4.runtime.tree with parameters of type ParseTreeListenerModifier and TypeMethodDescriptionprotected voidParseTreeWalker.enterRule(ParseTreeListener listener, RuleNode r) Enters a grammar rule by first triggering the generic eventParseTreeListener.enterEveryRule(ParserRuleContext)then by triggering the event specific to the given parse tree nodeprotected voidParseTreeWalker.exitRule(ParseTreeListener listener, RuleNode r) Exits a grammar rule by first triggering the event specific to the given parse tree node then by triggering the generic eventParseTreeListener.exitEveryRule(ParserRuleContext)voidIterativeParseTreeWalker.walk(ParseTreeListener listener, ParseTree t) voidParseTreeWalker.walk(ParseTreeListener listener, ParseTree t) Performs a walk on the given parse tree starting at the root and going down recursively with depth-first search.