1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 21:01:35 +03:00

Protolude has traceShowId now apparently.

This commit is contained in:
Rob Rix 2016-09-14 16:33:33 -04:00
parent 62196878fa
commit e4505a8be0

View File

@ -1,7 +1,6 @@
module Prologue
( module X
, lookup
, traceShowId
) where
import Protolude as X
@ -10,10 +9,3 @@ import Data.List (lookup)
import Control.Comonad.Trans.Cofree as X
import Control.Monad.Trans.Free as X
import Control.Comonad as X
import qualified GHC.Show as P
import qualified Debug.Trace as T
{-# WARNING traceShowId "'traceShowId' remains in code" #-}
traceShowId :: P.Show a => a -> a
traceShowId a = T.trace (P.show a) a