dropped CodegenPackage.const_of_idf
authorhaftmann
Mon, 18 Dec 2006 08:21:40 +0100
changeset 21883 341cefa2e4da
parent 21882 04d8633fbd2f
child 21884 7df02627898e
dropped CodegenPackage.const_of_idf
src/Pure/Tools/nbe_codegen.ML
--- a/src/Pure/Tools/nbe_codegen.ML	Mon Dec 18 08:21:39 2006 +0100
+++ b/src/Pure/Tools/nbe_codegen.ML	Mon Dec 18 08:21:40 2006 +0100
@@ -150,7 +150,7 @@
   let
     fun to_term bounds (C s) tcount =
           let
-            val (c, ty) = CodegenPackage.const_of_idf thy s;
+            val (c, ty) = (CodegenConsts.typ_of_inst thy o the o CodegenNames.const_rev thy) s;
             val ty' = map_type_tvar (fn ((s,i),S) => TypeInfer.param (tcount + i) (s,S)) ty;
             val tcount' = tcount + maxidx_of_typ ty + 1;
           in (Const (c, ty'), tcount') end