Uses of Interface
org.parboiled.parserunners.ParseRunner
-
Packages that use ParseRunner Package Description org.parboiled.parserunners -
-
Uses of ParseRunner in org.parboiled.parserunners
Classes in org.parboiled.parserunners that implement ParseRunner Modifier and Type Class Description classAbstractParseRunner<V>classBasicParseRunner<V>The most basic of allParseRunnerimplementations.classErrorLocatingParseRunner<V>AParseRunnerimplementation that creates a simpleBasicParseErrorfor the first error found in the input and adds it to the list of ParseErrors.classErrorReportingParseRunner<V>AParseRunnerimplementation that creates anInvalidInputErrorfor the error at a known error location.classProfilingParseRunner<V>The ProfilingParseRunner is a specialParseRunnerimplementation that "watches" a parser digest a number of inputs and collects all sorts of statistical data on the what rules have matched how many times, the number of reincovations of rules at identical input locations, and so on.classRecoveringParseRunner<V>AParseRunnerimplementation that is able to recover fromInvalidInputErrors in the input and therefore report more than just the firstInvalidInputErrorif the input does not conform to the rule grammar.classReportingParseRunner<V>AParseRunnerimplementation that properly reports the firstInvalidInputErrorif the input does not conform to the rule grammar.classTracingParseRunner<V>AParseRunnerimplementation used for debugging purposes.Methods in org.parboiled.parserunners that return ParseRunner Modifier and Type Method Description ParseRunner<V>AbstractParseRunner. withParseErrors(java.util.List<ParseError> parseErrors)ParseRunner<V>ParseRunner. withParseErrors(java.util.List<ParseError> parseErrors)Initializes the parse runner with the given error list.ParseRunner<V>AbstractParseRunner. withValueStack(ValueStack<V> valueStack)ParseRunner<V>ParseRunner. withValueStack(ValueStack<V> valueStack)Initializes the parse runner with the given ValueStack instance.
-