Package org.parboiled.parserunners
-
Interface Summary Interface Description ParseRunner<V> A ParseRunner performs the actual parsing run of a given parser rule on a given input text. -
Class Summary Class Description AbstractParseRunner<V> BasicParseRunner<V> The most basic of allParseRunnerimplementations.ErrorLocatingParseRunner<V> AParseRunnerimplementation that creates a simpleBasicParseErrorfor the first error found in the input and adds it to the list of ParseErrors.ErrorReportingParseRunner<V> AParseRunnerimplementation that creates anInvalidInputErrorfor the error at a known error location.ProfilingParseRunner<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.ProfilingParseRunner.Report ProfilingParseRunner.RuleReport RecoveringParseRunner<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.ReportingParseRunner<V> AParseRunnerimplementation that properly reports the firstInvalidInputErrorif the input does not conform to the rule grammar.TracingParseRunner<V> AParseRunnerimplementation used for debugging purposes. -
Exception Summary Exception Description RecoveringParseRunner.TimeoutException