Add ASSERTs to all calls of nameModule
[ghc-hetmet.git] / compiler / basicTypes / VarSet.lhs
index 1bef89a..67a3dbf 100644 (file)
@@ -4,15 +4,11 @@
 %
 
 \begin{code}
-{-# OPTIONS -w #-}
--- The above warning supression flag is a temporary kludge.
--- While working on this module you are encouraged to remove it and fix
--- any warnings in the module. See
---     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
--- for details
-
 module VarSet (
+        -- * Var, Id and TyVar set types
        VarSet, IdSet, TyVarSet,
+       
+       -- ** Manipulating these sets
        emptyVarSet, unitVarSet, mkVarSet,
        extendVarSet, extendVarSetList, extendVarSet_C,
        elemVarSet, varSetElems, subVarSet,
@@ -26,10 +22,9 @@ module VarSet (
 
 #include "HsVersions.h"
 
-import Var
+import Var      ( Var, TyVar, Id )
 import Unique
 import UniqSet
-import UniqFM
 \end{code}
 
 %************************************************************************