src/Pure/ML/exn_debugger.ML
changeset 62821 48c24d0b6d85
parent 62516 5732f1c31566
child 62889 99c7f31615c2
--- a/src/Pure/ML/exn_debugger.ML	Sat Apr 02 21:54:51 2016 +0200
+++ b/src/Pure/ML/exn_debugger.ML	Sat Apr 02 21:55:32 2016 +0200
@@ -6,7 +6,8 @@
 
 signature EXN_DEBUGGER =
 sig
-  val capture_exception_trace: (unit -> 'a) -> (string * ML_Debugger.location) list * 'a Exn.result
+  val capture_exception_trace:
+    (unit -> 'a) -> (string * ML_Compiler0.polyml_location) list * 'a Exn.result
 end;
 
 structure Exn_Debugger: EXN_DEBUGGER =
@@ -15,7 +16,8 @@
 (* thread data *)
 
 local
-  val tag = Universal.tag () : ((string * ML_Debugger.location) * exn) list option Universal.tag;
+  val tag =
+    Universal.tag () : ((string * ML_Compiler0.polyml_location) * exn) list option Universal.tag;
 in
 
 fun start_trace () = Thread.setLocal (tag, SOME []);