[project @ 2002-11-20 23:27:37 by chak]
authorchak <unknown>
Wed, 20 Nov 2002 23:27:37 +0000 (23:27 +0000)
committerchak <unknown>
Wed, 20 Nov 2002 23:27:37 +0000 (23:27 +0000)
wibble

ghc/compiler/deSugar/DsMeta.hs

index f74202e..b5cd548 100644 (file)
@@ -303,16 +303,9 @@ rep_proto nm ty = do { nm1 <- lookupBinder nm ;
 --                     Types
 -------------------------------------------------------
 
--- represent a list of type variables in a usage position that does not need
--- gensym'ing
---
-repTvs :: [HsTyVarBndr Name] -> DsM (Core [String])
-repTvs tvs = do { tvs1 <- mapM (localVar . hsTyVarName) tvs ;
-                 return (coreList' stringTy tvs1) } 
-
 -- gensym a list of type variables and enter them into the meta environment;
 -- the computations passed as the second argument is executed in that extended
--- meta environment and gets the *original* names as an argument
+-- meta environment and gets the *new* names on Core-level as an argument
 --
 addTyVarBinds :: [HsTyVarBndr Name]             -- the binders to be added
              -> ([Core String] -> DsM (Core (M.Q a))) -- action in the ext env