blob: dee3d2039c5e44164a191b7c6648f76b007f2c28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module GHC.Utils.Outputable where
import GHC.Prelude
import GHC.Stack( HasCallStack )
data SDoc
data PprStyle
data SDocContext
showSDocUnsafe :: SDoc -> String
warnPprTrace :: HasCallStack => Bool -> String -> Int -> SDoc -> a -> a
text :: String -> SDoc
|