blob: 7c6bdd9431bcbb1b56a43480c5963f3880294386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{-# LANGUAGE CPP, DeriveDataTypeable #-}
module HsDoc (
HsDocString(..),
LHsDocString,
ppr_mbDoc
) where
#include "HsVersions.h"
import GhcPrelude
import Outputable
import SrcLoc
import FastString
import Data.Data
-- | Haskell Documentation String
newtype HsDocString = HsDocString FastString
deriving (Eq, Show, Data)
-- | Located Haskell Documentation String
type LHsDocString = Located HsDocString
instance Outputable HsDocString where
ppr (HsDocString fs) = ftext fs
ppr_mbDoc :: Maybe LHsDocString -> SDoc
ppr_mbDoc (Just doc) = ppr doc
ppr_mbDoc Nothing = empty
|