diff options
Diffstat (limited to 'src/HaddockTypes.hs')
-rw-r--r-- | src/HaddockTypes.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/HaddockTypes.hs b/src/HaddockTypes.hs index 174b13a2..5430060c 100644 --- a/src/HaddockTypes.hs +++ b/src/HaddockTypes.hs @@ -83,6 +83,12 @@ data ExportItem HsDecl -- a declaration (with doc annotations) [InstHead] -- instances relevant to this declaration + | ExportNoDecl -- an exported entity for which we have no documentation + -- (perhaps becuase it resides in another package) + HsQName -- the original name + HsQName -- where to link to + [HsQName] -- subordinate names + | ExportGroup -- a section heading Int -- section level (1, 2, 3, ... ) String -- section "id" (for hyperlinks) |