Created
December 17, 2017 21:26
-
-
Save abailly/0a205c4576b5789d9c858d97abf838f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Control.Monad.Operational | |
import Data.Dynamic | |
import Data.Reify | |
import Protolude | |
data Prog i a f = Val a | |
| Step f f | |
| Inst (i a) | |
class NewVar a where | |
mkVar :: Dynamic -> a | |
instance ( Typeable i, Typeable b) => | |
MuRef (Program i b) where | |
type DeRef (Program i b) = Prog i b | |
mapDeRef f (Instr x) = pure $ Inst x | |
mapDeRef _ (Lift m) = undefined | |
mapDeRef f (Bind x k) = Step <$> _f x <*> f (k v) | |
where | |
v = mkVar (toDyn k) | |
instance ( Typeable i, Typeable b | |
, DeRef (i b) ~ DeRef (ProgramView i b) | |
, DeRef (Program i b) ~ DeRef (ProgramView i b)) => | |
MuRef (ProgramView i b) where | |
type DeRef (ProgramView i b) = Prog i b | |
mapDeRef _ (Return x) = pure $ Val x | |
mapDeRef f (x :>>= k) = Step <$> f x <*> f (k v) | |
where | |
v = mkVar (toDyn k) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment