From 35fe3258800793ad923afe036abd61b0e7778186 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 22 Feb 2022 00:15:02 +0100 Subject: Confusing haskell shenanigans Functional thinking isn't that easy. Huh. --- src/Fun/Compiler.hs | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/Fun/Compiler.hs') diff --git a/src/Fun/Compiler.hs b/src/Fun/Compiler.hs index f7e5c85..5ceb967 100644 --- a/src/Fun/Compiler.hs +++ b/src/Fun/Compiler.hs @@ -4,14 +4,18 @@ import Control.Exception import Fun.Parser import Fun.Tree -parse :: String -> Block -- TODO: Should be tree -parse file = case block file of - Nothing -> error "Invalid program" - Just (a, b) -> a +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 + Right (a, b) -> Right a compile :: String -> IO () compile path = do file <- try $ readFile path case file of Left exception -> print (exception :: IOError) - Right file -> putStrLn . show $ parse file + Right file -> case parse file of + Left err -> putStrLn err + Right block -> putStrLn . show $ block -- cgit v1.2.3