public class ParsingResult<V>
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
InputBuffer |
inputBuffer
The underlying input buffer.
|
boolean |
matched
Indicates whether the input was successfully parsed.
|
java.util.List<ParseError> |
parseErrors
The list of parse errors created during the parsing run.
|
Node<V> |
parseTreeRoot
The root node of the parse tree created by the parsing run.
|
V |
resultValue
The top value of the value stack at the end of the parsing run or null, if the value stack is empty.
|
ValueStack<V> |
valueStack
The ValueStack used during the parsing run containing all values not popped of the stack by the parser.
|
| Constructor and Description |
|---|
ParsingResult(boolean matched,
Node<V> parseTreeRoot,
ValueStack<V> valueStack,
java.util.List<ParseError> parseErrors,
InputBuffer inputBuffer)
Creates a new ParsingResult.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasErrors() |
public final boolean matched
public final Node<V> parseTreeRoot
public final V resultValue
public final ValueStack<V> valueStack
public final java.util.List<ParseError> parseErrors
public final InputBuffer inputBuffer
public ParsingResult(boolean matched,
Node<V> parseTreeRoot,
ValueStack<V> valueStack,
java.util.List<ParseError> parseErrors,
InputBuffer inputBuffer)
matched - true if the rule matched the inputparseTreeRoot - the parse tree root nodevalueStack - the value stack of the parsing runparseErrors - the list of parse errorsinputBuffer - the input buffer