diff options
| author | Simon Hengel <sol@typeful.net> | 2012-01-12 17:53:37 +0100 | 
|---|---|---|
| committer | David Waern <david.waern@gmail.com> | 2012-02-04 00:50:29 +0100 | 
| commit | b2c3c861ce8c9dc48622cb76beec50dffeffb328 (patch) | |
| tree | 7f3f56feb23241ae15d2f9b0f5f948c0046ba3be /src | |
| parent | 15a71929f57b57036b503d271b23d4b75460a92c (diff) | |
Add support for warnings
Diffstat (limited to 'src')
| -rw-r--r-- | src/Haddock/Interface/Create.hs | 27 | 
1 files changed, 25 insertions, 2 deletions
| diff --git a/src/Haddock/Interface/Create.hs b/src/Haddock/Interface/Create.hs index 2f8e1f01..76b59a80 100644 --- a/src/Haddock/Interface/Create.hs +++ b/src/Haddock/Interface/Create.hs @@ -79,8 +79,31 @@ createInterface tm flags modMap instIfaceMap = do        (decls, _) = unzip declsWithDocs        localInsts = filter (nameIsLocalOrFrom mdl . getName) instances -  maps@(docMap, argMap, subMap, declMap) <- -    liftErrMsg $ mkMaps dflags gre localInsts exportedNames declsWithDocs +  (docs, argMap, subMap, declMap) <- liftErrMsg $ mkMaps dflags gre localInsts exportedNames declsWithDocs + +  -- Attach warnings to documentation as appropriate.  If there is a warning +  -- for an identifier with no documentation, create a piece of documentation, +  -- that just contains the warning. +  let docMap = warningMap `combine` docs +        where +          combine :: (Ord k, Monoid a) => Map k a -> Map k a -> Map k a +          combine = M.unionWith mappend + +          warningMap = case warnings of +            -- NOTE: warningMap may contain more elements than xs, e.g.  when +            -- we have a warning for: +            -- +            --   data Foo = Foo +            -- +            -- So you can not just map over xs! +            (WarnSome xs) -> foldr f M.empty exportedNames +              where +                f name m = case lookup (getOccName name) xs of +                  Just x  -> M.insert name (warningToDoc x) m +                  Nothing -> m +            _ -> M.empty + +  let maps = (docMap, argMap, subMap, declMap)    let exports0 = fmap (reverse . map unLoc) mayExports        exports | 
