removing warnings.

This commit is contained in:
Kazu Yamamoto 2014-08-12 16:41:21 +09:00
parent 463ab9a26f
commit dcadd5c7ba
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,6 @@ module TestUtils (
import Language.Haskell.GhcMod.Monad
import Language.Haskell.GhcMod.Types
import Control.Applicative
isolateCradle :: IOish m => GhcModT m a -> GhcModT m a
isolateCradle action =
local modifyEnv $ action
@ -30,9 +28,11 @@ runIsolatedGhcMod opt action = do
extract $ runGhcModT opt $ isolateCradle action
-- | Run GhcMod in isolated cradle with default options
runID :: GhcModT IO a -> IO a
runID = runIsolatedGhcMod defaultOptions
-- | Run GhcMod in isolated cradle
runI :: Options -> GhcModT IO a -> IO a
runI = runIsolatedGhcMod
-- | Run GhcMod