Skip to content
Snippets Groups Projects
Commit 2163981e authored by Alex Biehl's avatar Alex Biehl Committed by GitHub
Browse files

Lazily decode docMap and argMap (#610)

These are only used in case of a doc reexport so most of the time
decoding these is wasted work.
parent 02787004
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ binaryInterfaceMagic = 0xD0Cface
--
binaryInterfaceVersion :: Word16
#if (__GLASGOW_HASKELL__ >= 802) && (__GLASGOW_HASKELL__ < 804)
binaryInterfaceVersion = 29
binaryInterfaceVersion = 30
binaryInterfaceVersionCompatibility :: [Word16]
binaryInterfaceVersionCompatibility = [binaryInterfaceVersion]
......@@ -377,6 +377,7 @@ instance Binary InstalledInterface where
put_ bh modu
put_ bh is_sig
put_ bh info
lazyPut bh (docMap, argMap)
put_ bh docMap
put_ bh argMap
put_ bh exps
......@@ -389,8 +390,7 @@ instance Binary InstalledInterface where
modu <- get bh
is_sig <- get bh
info <- get bh
docMap <- get bh
argMap <- get bh
~(docMap, argMap) <- lazyGet bh
exps <- get bh
visExps <- get bh
opts <- get bh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment