Errors.Lexing_lThis module contains the type for lexing errors in scripts.
type t = | Unclosed of stringUnclosed c is for opened but unclosed delimiter char c (for example, quotes).
| UnterminatedCommentUnterminatedComment is a special case of Unclosed for comments.
| 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