Package | Description |
---|---|
org.jparsec |
Provides core Parser implementations for parser combinator logic.
|
org.jparsec.error |
Provides interfaces and classes for advanced error handling.
|
Modifier and Type | Method and Description |
---|---|
ParseTree |
Parser.parseTree(CharSequence source)
Parses
source and returns a ParseTree corresponding to the syntactical
structure of the input. |
Modifier and Type | Method and Description |
---|---|
List<ParseTree> |
ParseTree.getChildren()
Returns the immutable list of child nodes that correspond to
labeled
parsers syntactically enclosed inside parent parser. |
Modifier and Type | Method and Description |
---|---|
ParseTree |
ParserException.getParseTree()
Returns the parse tree until the parse error happened, when
parseTree() was invoked. |
Modifier and Type | Method and Description |
---|---|
void |
ParserException.setParseTree(ParseTree parseTree) |
Copyright © 2013–2016 jparsec. All rights reserved.