Package org.antlr.v4.runtime.tree.pattern
package org.antlr.v4.runtime.tree.pattern
-
ClassDescriptionRepresents the result of matching a
ParseTree
against a tree pattern.A pattern like<ID> = <expr>;
converted to aParseTree
byParseTreePatternMatcher.compile(String, int)
.A tree pattern matching mechanism for ANTLRParseTree
s.AToken
object representing an entire subtree matched by a parser rule; e.g.,<expr>
.AToken
object representing a token of a particular type; e.g.,<ID>
.