src/Pure/Isar/proof_context.ML
changeset 61265 996d73a96b4f
parent 61262 7bd1eb4b056e
child 61268 abe08fb15a12
equal deleted inserted replaced
61264:95ede7916178 61265:996d73a96b4f
   321 
   321 
   322 val class_space = Type.class_space o tsig_of;
   322 val class_space = Type.class_space o tsig_of;
   323 val type_space = Type.type_space o tsig_of;
   323 val type_space = Type.type_space o tsig_of;
   324 val const_space = Consts.space_of o consts_of;
   324 val const_space = Consts.space_of o consts_of;
   325 
   325 
   326 fun defs_context ctxt = (ctxt, SOME (const_space ctxt, type_space ctxt));
   326 fun defs_context ctxt = (ctxt, (const_space ctxt, type_space ctxt));
   327 
   327 
   328 val intern_class = Name_Space.intern o class_space;
   328 val intern_class = Name_Space.intern o class_space;
   329 val intern_type = Name_Space.intern o type_space;
   329 val intern_type = Name_Space.intern o type_space;
   330 val intern_const = Name_Space.intern o const_space;
   330 val intern_const = Name_Space.intern o const_space;
   331 
   331