aboutsummaryrefslogtreecommitdiff
path: root/haddock-api/src/Haddock
diff options
context:
space:
mode:
authoralexbiehl <alexbiehl@gmail.com>2021-02-07 17:46:25 +0100
committeralexbiehl <alexbiehl@gmail.com>2021-02-07 17:46:25 +0100
commit2f34d120c6da996d23518c3fa9065ccf0e05a551 (patch)
treecf1aa4083e73df02b0bdc95e0ae3ed370e46349a /haddock-api/src/Haddock
parent9dab3bdc9f31c0389e69f21c2199f874d151ccb7 (diff)
Remove dubious parseModLink
Instead construct the ModLink value directly when parsing.
Diffstat (limited to 'haddock-api/src/Haddock')
-rw-r--r--haddock-api/src/Haddock/InterfaceFile.hs8
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)