src/Pure/consts.ML
changeset 79451 ef867bf3e6c9
parent 79449 e6fb110d6e44
child 79452 664d0cec18fd
--- a/src/Pure/consts.ML	Tue Jan 09 15:14:49 2024 +0100
+++ b/src/Pure/consts.ML	Tue Jan 09 16:04:21 2024 +0100
@@ -28,7 +28,7 @@
   val intern: T -> xstring -> string
   val intern_syntax: T -> xstring -> string
   val check_const: Context.generic -> T -> xstring * Position.T list -> term * Position.report list
-  val certify: Context.generic -> Type.tsig -> bool -> T -> term -> term  (*exception TYPE*)
+  val certify: {do_expand: bool} -> Context.generic -> Type.tsig -> T -> term -> term  (*exception TYPE*)
   val typargs: T -> string * typ -> typ list
   val instance: T -> string * typ list -> typ
   val dummy_types: T -> term -> term
@@ -164,7 +164,7 @@
 
 (* certify *)
 
-fun certify context tsig do_expand consts =
+fun certify {do_expand} context tsig consts =
   let
     fun err msg (c, T) =
       raise TYPE (msg ^ " " ^ quote c ^ " :: " ^
@@ -293,8 +293,8 @@
 
 fun abbreviate context tsig mode (b, raw_rhs) consts =
   let
-    val cert_term = certify context tsig false consts;
-    val expand_term = certify context tsig true consts;
+    val cert_term = certify {do_expand = false} context tsig consts;
+    val expand_term = certify {do_expand = true} context tsig consts;
     val force_expand = mode = Print_Mode.internal;
 
     val _ = Term.exists_subterm Term.is_Var raw_rhs andalso