aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Compiler.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-02-23 20:00:10 +0100
committerMarvin Borner2022-02-23 20:00:10 +0100
commiteec77f103115b92230af6d1b43ea1f2b58db28b8 (patch)
tree9161ce3c6c5f08cb8db4dad08dbc2625ddd40489 /src/Fun/Compiler.hs
parentb6805304770bd719fec6116ea049830b5df95c81 (diff)
Error reporting
Diffstat (limited to 'src/Fun/Compiler.hs')
-rw-r--r--src/Fun/Compiler.hs19
1 files changed, 15 insertions, 4 deletions
diff --git a/src/Fun/Compiler.hs b/src/Fun/Compiler.hs
index 5ceb967..a8134ed 100644
--- a/src/Fun/Compiler.hs
+++ b/src/Fun/Compiler.hs
@@ -3,12 +3,21 @@ module Fun.Compiler where
import Control.Exception
import Fun.Parser
import Fun.Tree
+import System.Exit
+import System.IO
+
+genTrace :: [String] -> String
+genTrace xs =
+ "Trace of expectance: "
+ ++ foldr (\a b -> a ++ if b == "" then b else " -> " ++ b) "" xs
parse :: String -> Either String Program -- TODO: Should be tree
parse file = case program file of
- Left a -> Left $ "Invalid code around here:\n" ++ case a of
- Nothing -> "[No context]"
- Just str -> str
+ Left a -> Left $ "Parse fault!\n" ++ case a of
+ State [] Nothing -> "No context available"
+ State t Nothing -> genTrace t
+ State [] (Just str) -> "Around here:\n" ++ str
+ State t (Just str) -> genTrace t ++ "\nAround here:\n" ++ str
Right (a, b) -> Right a
compile :: String -> IO ()
@@ -17,5 +26,7 @@ compile path = do
case file of
Left exception -> print (exception :: IOError)
Right file -> case parse file of
- Left err -> putStrLn err
+ Left err -> do
+ hPutStrLn stderr err
+ exitWith (ExitFailure 1)
Right block -> putStrLn . show $ block