Uses of Interface
org.parboiled.support.ValueStack
-
Packages that use ValueStack Package Description org.parboiled org.parboiled.parserunners org.parboiled.support -
-
Uses of ValueStack in org.parboiled
Methods in org.parboiled that return ValueStack Modifier and Type Method Description ValueStack<V>Context. getValueStack()Returns the value stack instance used during this parsing run.ValueStack<V>MatcherContext. getValueStack()Constructors in org.parboiled with parameters of type ValueStack Constructor Description MatcherContext(InputBuffer inputBuffer, ValueStack<V> valueStack, java.util.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 ValueStack Modifier and Type Method Description ValueStack<V>AbstractParseRunner. getValueStack()Methods in org.parboiled.parserunners with parameters of type ValueStack Modifier and Type Method Description ParseRunner<V>AbstractParseRunner. withValueStack(ValueStack<V> valueStack)ParseRunner<V>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 ValueStack Modifier and Type Class Description classDebuggingValueStack<V>classDefaultValueStack<V>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 ValueStack Modifier and Type Field Description ValueStack<V>ParsingResult. valueStackThe 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 ValueStack Constructor Description ParsingResult(boolean matched, Node<V> parseTreeRoot, ValueStack<V> valueStack, java.util.List<ParseError> parseErrors, InputBuffer inputBuffer)Creates a new ParsingResult.
-