diff options
author | simonpj@microsoft.com <unknown> | 2009-11-12 09:22:54 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2009-11-12 09:22:54 +0000 |
commit | 0aabb948ed7d6a18f81eae8cd14da79a62c3d7ea (patch) | |
tree | 8819c00bb9ce7163b557cbcbfdd16c85d3b04a66 /compiler/utils/MonadUtils.hs | |
parent | c55eee3add067dd0372ed8eede64b84791f7a9b9 (diff) | |
download | haskell-0aabb948ed7d6a18f81eae8cd14da79a62c3d7ea.tar.gz |
Add an ID monad to MonadUtils (used in kind checking)
Diffstat (limited to 'compiler/utils/MonadUtils.hs')
-rw-r--r-- | compiler/utils/MonadUtils.hs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/compiler/utils/MonadUtils.hs b/compiler/utils/MonadUtils.hs index 9b364aebb7..5e01a222b2 100644 --- a/compiler/utils/MonadUtils.hs +++ b/compiler/utils/MonadUtils.hs @@ -8,6 +8,8 @@ module MonadUtils , MonadFix(..) , MonadIO(..) + + , ID, runID , liftIO1, liftIO2, liftIO3, liftIO4 @@ -22,6 +24,8 @@ module MonadUtils , maybeMapM ) where +import Outputable + ---------------------------------------------------------------------------------------- -- Detection of available libraries ---------------------------------------------------------------------------------------- @@ -43,6 +47,20 @@ import Control.Monad import Control.Monad.Fix ---------------------------------------------------------------------------------------- +-- The ID monad +---------------------------------------------------------------------------------------- + +newtype ID a = ID a +instance Monad ID where + return x = ID x + (ID x) >>= f = f x + _ >> y = y + fail s = panic s + +runID :: ID a -> a +runID (ID x) = x + +---------------------------------------------------------------------------------------- -- MTL ---------------------------------------------------------------------------------------- |