]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitaExcPp.ml
ocaml 3.09 transition
[helm.git] / helm / matita / matitaExcPp.ml
index 6dccc429fae99293349978c5764c55bb09d9dca7..3ad6da153095dac5c56a026a084e1aabb147342c 100644 (file)
@@ -55,5 +55,18 @@ let to_string =
      "Type checking error: " ^ Lazy.force msg
   | CicTypeChecker.AssertFailure msg ->
      "Type checking assertion failed: " ^ Lazy.force msg
+  | MatitaDisambiguator.DisambiguationError errorll ->
+     let rec aux n =
+      function
+         [] -> ""
+       | phase::tl ->
+          aux (n+1) tl ^
+           "***** Errors obtained during phase " ^ string_of_int n ^": *****\n"^
+            String.concat "\n\n"
+             (List.map (fun msg -> "*Error: " ^ Lazy.force msg) phase) ^
+            "\n\n\n"
+     in
+      "********** DISAMBIGUATION ERRORS: **********\n" ^
+       aux 1 errorll
   | exn -> "Uncaught exception: " ^ Printexc.to_string exn