Source file conv_error.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
open! Import
type t =
| Parse_error of Parse_error.t
| Of_sexp_error of Of_sexp_error.t
[@@deriving_inline sexp_of]
let sexp_of_t =
(function
| Parse_error arg0__001_ ->
let res0__002_ = Parse_error.sexp_of_t arg0__001_ in
Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "Parse_error"; res0__002_ ]
| Of_sexp_error arg0__003_ ->
let res0__004_ = Of_sexp_error.sexp_of_t arg0__003_ in
Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "Of_sexp_error"; res0__004_ ]
: t -> Sexplib0.Sexp.t)
;;
[@@@end]
let report ppf ~filename t =
match t with
| Parse_error e -> Parse_error.report ppf ~filename e
| Of_sexp_error e -> Of_sexp_error.report ppf ~filename e
;;