Add ASSERTs to all calls of nameModule
[ghc-hetmet.git] / compiler / basicTypes / VarSet.lhs
index d4293ba..67a3dbf 100644 (file)
@@ -5,7 +5,10 @@
 
 \begin{code}
 module VarSet (
+        -- * Var, Id and TyVar set types
        VarSet, IdSet, TyVarSet,
+       
+       -- ** Manipulating these sets
        emptyVarSet, unitVarSet, mkVarSet,
        extendVarSet, extendVarSetList, extendVarSet_C,
        elemVarSet, varSetElems, subVarSet,
@@ -17,11 +20,9 @@ module VarSet (
        elemVarSetByKey
     ) where
 
--- XXX This define is a bit of a hack, and should be done more nicely
-#define FAST_STRING_NOT_NEEDED 1
 #include "HsVersions.h"
 
-import Var
+import Var      ( Var, TyVar, Id )
 import Unique
 import UniqSet
 \end{code}