Errors.Lexing_lThis module contains the type for lexing errors in ACGs.
type t = | UnstartedBracketUnstartedBracket is raised when an unopened bracket is closed.
| MismatchParentheses of charMismatchParentheses c is raised when there is a mismatch with opening and closing of char c.
| UnterminatedCommentUnterminatedComment is raised when the end of file is reached in an opened comment.
| UnstartedCommentUnstartedComment is raised when the comment closing token appear before the opening one.
| BadChar of stringBadChar c is raised when a char c can't appear in any lexical tokens.
| MalformedMalformed if raised when an invalid UTF-8 sequence is encountered in the input.
val pp : Stdlib.Format.formatter -> t -> unit