Uses of Class
org.parboiled.support.ParsingResult
Packages that use ParsingResult
-
Uses of ParsingResult in org.parboiled.errors
Methods in org.parboiled.errors with parameters of type ParsingResultModifier and TypeMethodDescriptionstatic String
ErrorUtils.printParseErrors
(ParsingResult<?> parsingResult) Pretty prints the parse errors of the given ParsingResult showing their location in the given input buffer. -
Uses of ParsingResult in org.parboiled.parserunners
Fields in org.parboiled.parserunners declared as ParsingResultModifier and TypeFieldDescriptionfinal ParsingResult<?>
RecoveringParseRunner.TimeoutException.lastParsingResult
Methods in org.parboiled.parserunners that return ParsingResultModifier and TypeMethodDescriptionprotected ParsingResult<V>
AbstractParseRunner.createParsingResult
(boolean matched, MatcherContext<V> rootContext) AbstractParseRunner.run
(char[] input) BasicParseRunner.run
(InputBuffer inputBuffer) static <V> ParsingResult<V>
Deprecated.As of 0.11.0 you should use the "regular" constructor and one of the "run" methods rather than this static method.ErrorLocatingParseRunner.run
(InputBuffer inputBuffer) ErrorReportingParseRunner.run
(InputBuffer inputBuffer) ParseRunner.run
(char[] input) Performs the actual parse and creates a corresponding ParsingResult instance.Performs the actual parse and creates a corresponding ParsingResult instance.ParseRunner.run
(InputBuffer inputBuffer) Performs the actual parse and creates a corresponding ParsingResult instance.ProfilingParseRunner.run
(InputBuffer inputBuffer) RecoveringParseRunner.run
(InputBuffer inputBuffer) static <V> ParsingResult<V>
Deprecated.As of 0.11.0 you should use the "regular" constructor and one of the "run" methods rather than this static method.ReportingParseRunner.run
(InputBuffer inputBuffer) static <V> ParsingResult<V>
Deprecated.As of 0.11.0 you should use the "regular" constructor and one of the "run" methods rather than this static method.protected ParsingResult<V>
ReportingParseRunner.runBasicMatch
(InputBuffer inputBuffer) protected ParsingResult<V>
TracingParseRunner.runBasicMatch
(InputBuffer inputBuffer) protected ParsingResult<V>
ReportingParseRunner.runLocatingMatch
(InputBuffer inputBuffer) protected ParsingResult<V>
ReportingParseRunner.runReportingMatch
(InputBuffer inputBuffer, int errorIndex) Constructors in org.parboiled.parserunners with parameters of type ParsingResultModifierConstructorDescriptionTimeoutException
(Rule rule, InputBuffer inputBuffer, ParsingResult<?> lastParsingResult) -
Uses of ParsingResult in org.parboiled.support
Methods in org.parboiled.support with parameters of type ParsingResultModifier and TypeMethodDescriptionstatic <V> String
ParseTreeUtils.printNodeTree
(ParsingResult<V> parsingResult) Creates a readable string represenation of the parse tree in the givenParsingResult
object.static <V> String
ParseTreeUtils.printNodeTree
(ParsingResult<V> parsingResult, Predicate<Node<V>> nodeFilter, Predicate<Node<V>> subTreeFilter) Creates a readable string represenation of the parse tree in thee givenParsingResult
object.