Uses of Class
org.jparsec.ParseTree
-
Packages that use ParseTree Package Description org.jparsec Provides core Parser implementations for parser combinator logic.org.jparsec.error Provides interfaces and classes for advanced error handling. -
-
Uses of ParseTree in org.jparsec
Fields in org.jparsec with type parameters of type ParseTree Modifier and Type Field Description private java.util.List<ParseTree>
ParseTree. children
Methods in org.jparsec that return ParseTree Modifier and Type Method Description (package private) ParseTree
ParseContext. buildErrorParseTree()
(package private) ParseTree
ParseContext. buildParseTree()
ParseTree
Parser. parseTree(java.lang.CharSequence source)
Parsessource
and returns aParseTree
corresponding to the syntactical structure of the input.(package private) ParseTree
TreeNode. toParseTree()
Converts this node into aParseTree
representation.Methods in org.jparsec that return types with arguments of type ParseTree Modifier and Type Method Description java.util.List<ParseTree>
ParseTree. getChildren()
Returns the immutable list of child nodes that correspond tolabeled
parsers syntactically enclosed inside parent parser.Constructor parameters in org.jparsec with type arguments of type ParseTree Constructor Description ParseTree(java.lang.String name, int beginIndex, int endIndex, java.lang.Object value, java.util.List<ParseTree> children)
-
Uses of ParseTree in org.jparsec.error
Fields in org.jparsec.error declared as ParseTree Modifier and Type Field Description private ParseTree
ParserException. parseTree
Methods in org.jparsec.error that return ParseTree Modifier and Type Method Description ParseTree
ParserException. getParseTree()
Returns the parse tree until the parse error happened, whenparseTree()
was invoked.Methods in org.jparsec.error with parameters of type ParseTree Modifier and Type Method Description void
ParserException. setParseTree(ParseTree parseTree)
-