Safe Haskell | None |
---|---|
Language | GHC2021 |
Synopsis
- module GHC.Prelude.Basic
- pprSTrace :: HasCallStack => SDoc -> a -> a
- pprTrace :: String -> SDoc -> a -> a
- pprTraceDebug :: String -> SDoc -> a -> a
- pprTraceException :: ExceptionMonad m => String -> SDoc -> m a -> m a
- pprTraceIt :: Outputable a => String -> a -> a
- pprTraceM :: Applicative f => String -> SDoc -> f ()
- pprTraceUserWarning :: HasCallStack => SDoc -> a -> a
- pprTraceWith :: String -> (a -> SDoc) -> a -> a
- warnPprTrace :: HasCallStack => Bool -> String -> SDoc -> a -> a
- warnPprTraceM :: (Applicative f, HasCallStack) => Bool -> String -> SDoc -> f ()
Documentation
module GHC.Prelude.Basic
pprSTrace :: HasCallStack => SDoc -> a -> a Source #
If debug output is on, show some SDoc
on the screen along
with a call stack when available.
pprTraceDebug :: String -> SDoc -> a -> a Source #
pprTraceException :: ExceptionMonad m => String -> SDoc -> m a -> m a Source #
pprTraceException desc x action
runs action, printing a message
if it throws an exception.
pprTraceIt :: Outputable a => String -> a -> a Source #
pprTraceIt desc x
is equivalent to pprTrace desc (ppr x) x
pprTraceUserWarning :: HasCallStack => SDoc -> a -> a Source #
For when we want to show the user a non-fatal WARNING so that they can report a GHC bug, but don't want to panic.
pprTraceWith :: String -> (a -> SDoc) -> a -> a Source #
pprTraceWith desc f x
is equivalent to pprTrace desc (f x) x
.
This allows you to print details from the returned value as well as from
ambient variables.
warnPprTrace :: HasCallStack => Bool -> String -> SDoc -> a -> a Source #
Just warn about an assertion failure, recording the given file and line number.
warnPprTraceM :: (Applicative f, HasCallStack) => Bool -> String -> SDoc -> f () Source #