src/Pure/ML/exn_properties_dummy.ML
author wenzelm
Fri, 24 May 2013 15:32:02 +0200
changeset 52129 3fd0fe916097
parent 50911 ee7fe4230642
child 60865 4194901fd513
permissions -rw-r--r--
unify types of bound variables in the same manner as Unify.new_dpair (which emphatically "Tries to unify types of the bound variables!");

(*  Title:      Pure/ML/exn_properties_dummy.ML
    Author:     Makarius

Exception properties -- dummy version.
*)

signature EXN_PROPERTIES =
sig
  val get: exn -> Properties.T
  val update: Properties.entry list -> exn -> exn
end;

structure Exn_Properties: EXN_PROPERTIES =
struct

fun get _ = [];
fun update _ exn = exn;

end;