Created
January 20, 2017 21:23
-
-
Save deque-blog/0bef28374152c5a729833e9376d0440b 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
replaceKnownVars :: Env -> ExprR Expr -> Expr | |
replaceKnownVars env = go where | |
go e@(Var v) = | |
case Map.lookup v env of | |
Just val -> cst val | |
Nothing -> Fix e | |
go e = Fix e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment