Skip to content
Snippets Groups Projects

Add RequestSRT

Closed Douglas Wilson requested to merge dougwilson/srts into master
12 files
+ 197
133
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -29,6 +29,7 @@ import GHC.Debug.Client.Monad.Class
@@ -29,6 +29,7 @@ import GHC.Debug.Client.Monad.Class
import Control.Monad.Fix
import Control.Monad.Fix
import Control.Monad.Reader
import Control.Monad.Reader
import Data.Binary
import Data.Binary
 
import Control.Monad.IO.Class()
--import Debug.Trace
--import Debug.Trace
@@ -181,6 +182,4 @@ blockReq req = DebugM $ do
@@ -181,6 +182,4 @@ blockReq req = DebugM $ do
newtype DebugM a = DebugM (ReaderT Debuggee IO a)
newtype DebugM a = DebugM (ReaderT Debuggee IO a)
-- Only derive the instances that DebugMonad needs
-- Only derive the instances that DebugMonad needs
deriving (MonadFail, Functor, Applicative, Monad, MonadFix)
deriving (MonadFail, Functor, Applicative, Monad, MonadFix, MonadIO)
Loading