diff options
author | Alain Frisch <alain@frisch.fr> | 2013-09-11 16:05:40 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2013-09-11 16:05:40 +0000 |
commit | 2493d3414baeaabbbc871c83608222453a5037ed (patch) | |
tree | 426c3c26dcbcbe95c156242039c39d3f49cb9e12 /driver/errors.ml | |
parent | 4b6c40b8ba54e4a327388debbdd17e016e99688e (diff) | |
parent | 637893aa3cb4d2c5a3ab85191d79d6d8941be91c (diff) |
Branch for experimenting with a new way to define and use error printers.
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/exception_registration@14103 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'driver/errors.ml')
-rw-r--r-- | driver/errors.ml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/driver/errors.ml b/driver/errors.ml index 5faa274da..14a1a23cb 100644 --- a/driver/errors.ml +++ b/driver/errors.ml @@ -39,6 +39,8 @@ let report_error ppf exn = fprintf ppf "In this program,@ variant constructors@ `%s and `%s@ \ have the same hash value.@ Change one of them." l l' + | Typecore.Error(loc, env, err) -> + Location.print_error ppf loc; Typecore.report_error env ppf err | Typetexp.Error(loc, env, err) -> Location.print_error ppf loc; Typetexp.report_error env ppf err | Typedecl.Error(loc, err) -> @@ -74,10 +76,6 @@ let report_error ppf exn = | Warnings.Errors (n) -> Location.print_error_cur_file ppf; fprintf ppf "Some fatal warnings were triggered (%d occurrences)" n - | x -> - match Location.error_of_exn x with - | Some err -> Location.report_error ppf err - | None -> fprintf ppf "@]"; raise x - in + | x -> fprintf ppf "@]"; raise x in fprintf ppf "@[%a@]@." report exn |