Up
module
Error_report
:
sig
Exception formatting for error reporting
#
type
t = {
#
valid
: bool
;
#
loc
:
Location
.
t
;
#
text
: string
;
#
where
: string
;
}
#
val
strict_of_exn : exn
->
(
Location
.
t
*
t
) option
#
val
of_exn : exn
->
Location
.
t
*
t
#
val
error_catcher : exn
->
(
Location
.
t
*
t
) option
end