aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
authorMarvin Borner2024-03-15 17:24:22 +0100
committerMarvin Borner2024-03-15 17:24:22 +0100
commit65a094a4ee67f16ff5ed7663c2b3dd6d85c19c00 (patch)
treea714254a4028a05dbac8f716e95bb5a9df5af6ca /src/Eval.hs
parent0b77800262b5c46d994e6cb6159f773de8a05c51 (diff)
Initial working optimization stage
Diffstat (limited to 'src/Eval.hs')
-rw-r--r--src/Eval.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Eval.hs b/src/Eval.hs
index d331e86..0a5e8c7 100644
--- a/src/Eval.hs
+++ b/src/Eval.hs
@@ -419,7 +419,7 @@ evalFileConf conf = do
Nothing -> print $ ContextualError (UndefinedIdentifier entryFunction)
(Context "" (_nicePath conf))
Just EnvDef { _exp = e } -> do
- red <- optimizedReduce conf (Application e arg)
+ red <- optimizedReduce conf { _hasArg = True } (Application e arg)
showResult red (Environment env)
exec :: EvalConf -> (String -> IO (Either IOError a)) -> (a -> String) -> IO ()
@@ -429,7 +429,7 @@ exec conf rd conv = do
case f of
Left exception -> print (exception :: IOError)
Right f' -> do
- red <- optimizedReduce conf (Application e arg)
+ red <- optimizedReduce conf { _hasArg = True } (Application e arg)
showResult red (Environment M.empty)
where e = fromBinary $ conv f'