diff options
author | alexbiehl <alexbiehl@gmail.com> | 2021-02-07 17:46:25 +0100 |
---|---|---|
committer | alexbiehl <alexbiehl@gmail.com> | 2021-02-07 17:46:25 +0100 |
commit | 2f34d120c6da996d23518c3fa9065ccf0e05a551 (patch) | |
tree | cf1aa4083e73df02b0bdc95e0ae3ed370e46349a /haddock-api | |
parent | 9dab3bdc9f31c0389e69f21c2199f874d151ccb7 (diff) |
Remove dubious parseModLink
Instead construct the ModLink value directly when parsing.
Diffstat (limited to 'haddock-api')
-rw-r--r-- | haddock-api/src/Haddock/InterfaceFile.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/haddock-api/src/Haddock/InterfaceFile.hs b/haddock-api/src/Haddock/InterfaceFile.hs index 966901df..69201eb0 100644 --- a/haddock-api/src/Haddock/InterfaceFile.hs +++ b/haddock-api/src/Haddock/InterfaceFile.hs @@ -46,9 +46,6 @@ import GHC.Types.Unique.FM import GHC.Types.Unique.Supply import GHC.Types.Unique -import Documentation.Haddock.Parser (parseModLink) - - data InterfaceFile = InterfaceFile { ifLinkEnv :: LinkEnv, ifInstalledIfaces :: [InstalledInterface] @@ -625,7 +622,10 @@ instance (Binary mod, Binary id) => Binary (DocH mod id) where -- See note [The DocModule story] 5 -> do af <- get bh - return (parseModLink af) + return $ DocModule ModLink + { modLinkName = af + , modLinkLabel = Nothing + } 6 -> do ag <- get bh return (DocEmphasis ag) |