Package org.antlr.v4.runtime.tree.pattern
package org.antlr.v4.runtime.tree.pattern
-
ClassDescriptionA chunk is either a token tag, a rule tag, or a span of literal text within a tree pattern.Represents 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>
.Represents a placeholder tag in a tree pattern.Represents a span of raw text (concrete syntax) between tags in a tree pattern string.AToken
object representing a token of a particular type; e.g.,<ID>
.