aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
authorMarvin Borner2024-02-29 11:35:25 +0100
committerMarvin Borner2024-02-29 11:35:25 +0100
commit4c6386fd250e8447e76ec9dfb6e8f5a266a050e2 (patch)
tree885850a60fa523c553f95411d0a826a0866a4020 /src/Eval.hs
parentd28604e2ebe4c58a9eb0ac2d7763b55f6c0beaea (diff)
Added higher order reducer
Diffstat (limited to 'src/Eval.hs')
-rw-r--r--src/Eval.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Eval.hs b/src/Eval.hs
index 2e9746d..5091b49 100644
--- a/src/Eval.hs
+++ b/src/Eval.hs
@@ -7,6 +7,7 @@ import Binary
import Control.Concurrent
import Control.DeepSeq ( deepseq )
import Control.Exception
+import Control.Monad ( when )
import Control.Monad.State
import qualified Control.Monad.State.Strict as StrictState
import qualified Data.BitString as Bit
@@ -148,7 +149,7 @@ evalQuote f sub = evalExp f sub >>= \case
evalUnquote :: Expression -> Environment -> EvalState (Failable Expression)
evalUnquote f sub = evalExp f sub >>= \case
Left e -> pure $ Left e
- Right f' -> pure $ Right $ Unquote $ unsafeReduce f' -- TODO: REMOVE UNSAFE
+ Right f' -> pure $ Right $ Unquote $ reduceNoIO f'
evalExp :: Expression -> Environment -> EvalState (Failable Expression)
evalExp idx@(Bruijn _ ) = const $ pure $ Right idx