[project @ 2000-10-13 14:14:31 by sewardj]
[ghc-hetmet.git] / ghc / compiler / main / HscTypes.lhs
index 97833dc..cb91e51 100644 (file)
@@ -4,7 +4,11 @@
 \section[HscTypes]{Types for the per-module compiler}
 
 \begin{code}
-module HscTypes  ( )
+module HscTypes ( TyThing(..), GlobalSymbolTable, OrigNameEnv, AvailEnv,
+                 WhetherHasOrphans, ImportVersion, ExportItem,
+                 PersistentRenamerState(..), IsBootInterface, Avails, DeclsMap,
+                 IfaceInsts, IfaceRules, DeprecationEnv, ModDetails(..),
+                 InstEnv, lookupTypeEnv )
 where
 
 #include "HsVersions.h"
@@ -35,7 +39,8 @@ import CoreSyn                ( CoreRule )
 import NameSet         ( NameSet )
 import Type            ( Type )
 import VarSet          ( TyVarSet )
-import {-# SOURCE #-} TcInstUtil ( emptyInstEnv )
+import {-# SOURCE #-} 
+       TcInstUtil ( emptyInstEnv )
 import Panic           ( panic )
 \end{code}