Parser.ParseWithErrors
This functor provides a default implementation for a concrete parser that support 'exit on error' parsing.
module P : PARSER
type lexer = Stdlib.Lexing.lexbuf -> P.t
type 'a parser = lexer -> Stdlib.Lexing.lexbuf -> 'a
val parse_with_error : 'a parser -> lexer -> Stdlib.Lexing.lexbuf -> 'a
val parse_from_string : 'a parser -> lexer -> string -> 'a