diff options
author | David Waern <david.waern@gmail.com> | 2012-09-07 15:22:43 +0200 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2012-09-07 15:22:43 +0200 |
commit | d8b3b28044ea851059286663514198171f211b15 (patch) | |
tree | 23ffe44675ca9ba031415d1f83368e4e302ac1f6 /src/Haddock/Interface.hs | |
parent | 8bfe43db4fbd50510c66fc73546f2087e8acf310 (diff) | |
parent | 42422b76fd65dfd37ada0d4da5a85fdf30bf0fa2 (diff) |
Merge branch 'hidden-instances' into ghc-7.6
Diffstat (limited to 'src/Haddock/Interface.hs')
-rw-r--r-- | src/Haddock/Interface.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Haddock/Interface.hs b/src/Haddock/Interface.hs index dcd794af..5a8e8485 100644 --- a/src/Haddock/Interface.hs +++ b/src/Haddock/Interface.hs @@ -43,6 +43,7 @@ import Haddock.Utils import Control.Monad import Data.List import qualified Data.Map as Map +import qualified Data.Set as Set import Distribution.Verbosity import System.Directory import System.FilePath @@ -72,8 +73,12 @@ processModules verbosity modules flags extIfaces = do , iface <- ifInstalledIfaces ext ] interfaces <- createIfaces0 verbosity modules flags instIfaceMap + let exportedNames = + Set.unions $ map (Set.fromList . ifaceExports) $ + filter (\i -> not $ OptHide `elem` ifaceOptions i) interfaces + mods = Set.fromList $ map ifaceMod interfaces out verbosity verbose "Attaching instances..." - interfaces' <- attachInstances interfaces instIfaceMap + interfaces' <- attachInstances (exportedNames, mods) interfaces instIfaceMap out verbosity verbose "Building cross-linking environment..." -- Combine the link envs of the external packages into one |