Uses of Interface
org.antlr.v4.runtime.tree.ParseTreeListener
-
Packages that use ParseTreeListener Package Description org.antlr.v4.runtime org.antlr.v4.runtime.tree -
-
Uses of ParseTreeListener in org.antlr.v4.runtime
Classes in org.antlr.v4.runtime that implement ParseTreeListener Modifier and Type Class Description classParser.TraceListenerstatic classParser.TrimToSizeListenerFields in org.antlr.v4.runtime with type parameters of type ParseTreeListener Modifier and Type Field Description protected 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 ParseTreeListener Modifier and Type Method Description List<ParseTreeListener>Parser. getParseListeners()Methods in org.antlr.v4.runtime with parameters of type ParseTreeListener Modifier and Type Method Description voidParser. 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 ParseTreeListener Modifier and Type Method Description protected voidParseTreeWalker. enterRule(ParseTreeListener listener, RuleNode r)Enters a grammar rule by first triggering the generic evententerEveryRule(org.antlr.v4.runtime.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 eventexitEveryRule(org.antlr.v4.runtime.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.
-