Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-7.4
http://hackage.haskell.org/trac/ghc/changeset/6d4156333dd3ab03369075fc6632a4702feefaaf >--------------------------------------------------------------- commit 6d4156333dd3ab03369075fc6632a4702feefaaf Author: Simon Marlow <[email protected]> Date: Wed Dec 14 09:34:49 2011 +0000 Export CoreModule(..) (#5698) >--------------------------------------------------------------- compiler/main/GHC.hs | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/compiler/main/GHC.hs b/compiler/main/GHC.hs index 7b82b11..9665c60 100644 --- a/compiler/main/GHC.hs +++ b/compiler/main/GHC.hs @@ -55,13 +55,16 @@ module GHC ( TypecheckedMod, ParsedMod, moduleInfo, renamedSource, typecheckedSource, parsedSource, coreModule, + + -- ** Compiling to Core + CoreModule(..), compileToCoreModule, compileToCoreSimplified, compileCoreToObj, - getModSummary, -- * Inspecting the module structure of the program ModuleGraph, ModSummary(..), ms_mod_name, ModLocation(..), - getModuleGraph, + getModSummary, + getModuleGraph, isLoaded, topSortModuleGraph, _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
