Uses of Interface
org.parboiled.errors.ParseError
Packages that use ParseError
Package
Description
-
Uses of ParseError in org.parboiled
Methods in org.parboiled that return types with arguments of type ParseErrorModifier and TypeMethodDescriptionContext.getParseErrors()Returns the list of parse errors for the entire parsing run.MatcherContext.getParseErrors()Constructor parameters in org.parboiled with type arguments of type ParseErrorModifierConstructorDescriptionMatcherContext(InputBuffer inputBuffer, ValueStack<V> valueStack, List<ParseError> parseErrors, MatchHandler matchHandler, Matcher matcher, boolean fastStringMatching) Initializes a new root MatcherContext. -
Uses of ParseError in org.parboiled.errors
Classes in org.parboiled.errors that implement ParseErrorModifier and TypeClassDescriptionclassAParseErrorwrapping an ActionException.classA basicParseErrorimplementation for a one-char parse error with an optional error message.classAParseErrordescribing one or more input characters that are illegal with regard to the underlying language grammar.Methods in org.parboiled.errors with parameters of type ParseErrorModifier and TypeMethodDescriptionstatic StringErrorUtils.printParseError(ParseError error) Pretty prints the given parse error showing its location in the given input buffer.static StringErrorUtils.printParseError(ParseError error, Formatter<InvalidInputError> formatter) Pretty prints the given parse error showing its location in the given input buffer.Method parameters in org.parboiled.errors with type arguments of type ParseErrorModifier and TypeMethodDescriptionstatic StringErrorUtils.printParseErrors(List<ParseError> errors) Pretty prints the given parse errors showing their location in the given input buffer. -
Uses of ParseError in org.parboiled.parserunners
Methods in org.parboiled.parserunners that return types with arguments of type ParseErrorMethod parameters in org.parboiled.parserunners with type arguments of type ParseErrorModifier and TypeMethodDescriptionAbstractParseRunner.withParseErrors(List<ParseError> parseErrors) ParseRunner.withParseErrors(List<ParseError> parseErrors) Initializes the parse runner with the given error list. -
Uses of ParseError in org.parboiled.support
Fields in org.parboiled.support with type parameters of type ParseErrorModifier and TypeFieldDescriptionfinal List<ParseError> ParsingResult.parseErrorsThe list of parse errors created during the parsing run.Constructor parameters in org.parboiled.support with type arguments of type ParseErrorModifierConstructorDescriptionParsingResult(boolean matched, Node<V> parseTreeRoot, ValueStack<V> valueStack, List<ParseError> parseErrors, InputBuffer inputBuffer) Creates a new ParsingResult.