1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
{-# LANGUAGE Arrows #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE UnicodeSyntax #-}
-- See Trac #10162 and #11743 for details
module ShouldCompile where
import Control.Arrow
import Language.Haskell.TH
handle :: ArrowPlus a => a (b,s) c -> a (b,(String,s)) c -> a (b,s) c
handle f h = proc (b,s) -> (f -< (b,s)) <+> (h -< (b,("FAIL",s)))
f :: ArrowPlus a => a (Int,Int) String
f = proc (x,y) ->
⦇handle
(returnA -< show y)
(\s -> returnA -< s ++ show x)
⦈
g :: ArrowPlus a => a (Int,Int) String
g = proc (x,y) ->
⦇handle
(\msg -> returnA -< msg ++ show y)
(\s msg -> returnA -< s ++ show x)
⦈ ("hello " ++ show x)
h :: ArrowPlus a => a (Int,Int) Int
h = proc (x,y) ->
(
(\z -> returnA -< x + z)
<+>
(\z -> returnA -< y + z)
) (x*y)
matches :: PatQ -> ExpQ
matches pat = ⟦\x ->
case x of
$pat -> True
_ -> False
⟧
|