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