diff options
author | Marvin Borner | 2023-02-24 15:31:45 +0100 |
---|---|---|
committer | Marvin Borner | 2023-02-24 15:31:45 +0100 |
commit | c371838c15ab245bd9b1db3947747c431a95040e (patch) | |
tree | 44f765f51bb082d3fe45eee6231bdeef84737921 /src/Eval.hs | |
parent | 3f20e501464fc31d0b10bbe004a2aae71aea38a4 (diff) |
Humanification of lists
Diffstat (limited to 'src/Eval.hs')
-rw-r--r-- | src/Eval.hs | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/Eval.hs b/src/Eval.hs index 6f8a0a5..d248b98 100644 --- a/src/Eval.hs +++ b/src/Eval.hs @@ -281,17 +281,15 @@ evalCommand inp s@(EnvState env@(Environment envDefs) conf cache) = \case pure s -- TODO: Reduce redundancy -showResult :: Expression -> Expression -> Environment -> IO () -showResult orig reduced env = - putStrLn - $ "<> " - <> (show orig) - <> "\n*> " - <> (show reduced) - <> "\n?> " - <> (humanifyExpression reduced) - <> "\n#> " - <> (matchingFunctions reduced env) +showResult :: Expression -> Environment -> IO () +showResult reduced env = + let matching = matchingFunctions reduced env + humanified = humanifyExpression reduced + in putStrLn + $ "*> " + <> (show reduced) + <> (if null humanified then "" else "\n?> " <> humanified) + <> (if null matching then "" else "\n#> " <> matching) evalInstruction :: Instruction -> EnvState -> (EnvState -> IO EnvState) -> IO EnvState @@ -313,7 +311,7 @@ evalInstruction (ContextualInstruction instr inp) s@(EnvState env conf _) rec = Left err -> print err >> rec s Right e' -> do red <- reduce e' - showResult e' red env + showResult red env rec s ) Commands cs -> yeet (pure s) cs >>= rec @@ -362,7 +360,7 @@ evalFileConf path conf = do $ ContextualError (UndefinedIdentifier entryFunction) (Context "" path) Just EnvDef { _exp = e } -> do red <- reduce $ Application e arg - showResult e red (Environment env) + showResult red (Environment env) evalFile :: String -> IO () evalFile path = evalFileConf path (defaultConf path) @@ -379,7 +377,7 @@ exec path rd conv = do Left exception -> print (exception :: IOError) Right f' -> do red <- reduce $ Application e arg - showResult e red (Environment M.empty) + showResult red (Environment M.empty) where e = fromBinary $ conv f' repl :: EnvState -> InputT M () |