From 4aa8b6d129382960302ea185e98c367240a01f41 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Wed, 8 Feb 2023 21:30:20 +0100 Subject: [PATCH] error errs --- app/Interpreter.hs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/Interpreter.hs b/app/Interpreter.hs index 1ef39f9..f36ef0b 100644 --- a/app/Interpreter.hs +++ b/app/Interpreter.hs @@ -22,7 +22,7 @@ import Env (PrlgEnv) --import Data.Function import qualified Data.Map as M -import IR (Id(..)) +import IR (Id(..), StrTable(..)) prove :: Code -> PrlgEnv (Either String Bool) prove g = do @@ -74,7 +74,10 @@ proveStep = St.get >>= go d <- St.gets defs case d M.!? fn of Just d -> cont d - _ -> ifail $ "no definition: " ++ show fn + _ -> do + StrTable _ _ itos <- St.gets strtable + ifail $ + "no definition: " ++ (itos M.! str fn) ++ "/" ++ show (arity fn) {- Unification -} go i@Interp {cur = cur@Cho {hed = U h:hs, gol = U g:gs, heap = heap}} = unify h g