aboutsummaryrefslogtreecommitdiff
path: root/src/HaddockTypes.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/HaddockTypes.hs')
-rw-r--r--src/HaddockTypes.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/HaddockTypes.hs b/src/HaddockTypes.hs
index 06e258cb..36cb9351 100644
--- a/src/HaddockTypes.hs
+++ b/src/HaddockTypes.hs
@@ -28,6 +28,12 @@ data Interface
iface_env :: NameEnv,
-- ^ environment mapping names to *original* names
+ iface_reexported :: NameEnv,
+ -- ^ For names exported by this module, but not actually documented
+ -- in this module's documentation (perhaps because they are reexported via
+ -- 'module M' in the export list), this mapping gives the location of
+ -- documentation for the name in another module.
+
iface_sub :: FiniteMap HsName [HsName],
-- ^ maps names to "subordinate" names
-- (eg. tycon to constrs & fields, class to methods)