Uses of Interface
org.parboiled.support.ValueStack
Packages that use ValueStack
-
Uses of ValueStack in org.parboiled
Methods in org.parboiled that return ValueStackModifier and TypeMethodDescriptionContext.getValueStack()
Returns the value stack instance used during this parsing run.MatcherContext.getValueStack()
Constructors in org.parboiled with parameters of type ValueStackModifierConstructorDescriptionMatcherContext
(InputBuffer inputBuffer, ValueStack<V> valueStack, List<ParseError> parseErrors, MatchHandler matchHandler, Matcher matcher, boolean fastStringMatching) Initializes a new root MatcherContext. -
Uses of ValueStack in org.parboiled.parserunners
Methods in org.parboiled.parserunners that return ValueStackMethods in org.parboiled.parserunners with parameters of type ValueStackModifier and TypeMethodDescriptionAbstractParseRunner.withValueStack
(ValueStack<V> valueStack) ParseRunner.withValueStack
(ValueStack<V> valueStack) Initializes the parse runner with the given ValueStack instance. -
Uses of ValueStack in org.parboiled.support
Classes in org.parboiled.support that implement ValueStackModifier and TypeClassDescriptionclass
class
An implementation of a stack of value objects providing an efficient snapshot capability and a number of convenience methods.Fields in org.parboiled.support declared as ValueStackModifier and TypeFieldDescriptionfinal ValueStack
<V> ParsingResult.valueStack
The ValueStack used during the parsing run containing all values not popped of the stack by the parser.Constructors in org.parboiled.support with parameters of type ValueStackModifierConstructorDescriptionParsingResult
(boolean matched, Node<V> parseTreeRoot, ValueStack<V> valueStack, List<ParseError> parseErrors, InputBuffer inputBuffer) Creates a new ParsingResult.