struct
type parsing =
[ `cannot_parse_float of Pos.t * string
| `cannot_parse_int of Pos.t * string
| `cannot_parse_strand of Pos.t * string
| `cannot_parse_string of Pos.t * string
| `empty_line of Pos.t
| `incomplete_input of
Pos.t * string list * string option
| `wrong_attributes of Pos.t * string
| `wrong_row of Pos.t * string
| `wrong_url_escaping of Pos.t * string ]
with sexp
type t = parsing with sexp
end