who left that here

This commit is contained in:
Mirek Kratochvil 2023-02-18 22:50:23 +01:00
parent c412d643a1
commit de4775bd77

View file

@ -6,7 +6,6 @@ import Code
, Code , Code
, Datum(..) , Datum(..)
, Dereferenced(..) , Dereferenced(..)
, Heap(..)
, Instr(..) , Instr(..)
, Interp(..) , Interp(..)
, InterpFn , InterpFn
@ -136,29 +135,6 @@ retractall =
BoundRef _ (Struct id) -> dropProcedure id >> continue BoundRef _ (Struct id) -> dropProcedure id >> continue
_ -> prlgError "retractall needs a struct" _ -> prlgError "retractall needs a struct"
call' :: InterpFn
call' =
withArgs [0] $ \[arg] -> do
heap@(Heap _ hmap) <- gets (heap . cur)
let exec base struct arity = do
cur <- gets cur
modify $ \s ->
s
{ cur =
cur
{ gol =
[Call, Goal, U struct] ++
[U $ hmap M.! (base + i) | i <- [1 .. arity]] ++ gol cur
}
}
continue
case derefHeap heap arg of
BoundRef addr struct@(Struct IR.Id {IR.arity = arity}) ->
exec addr struct arity
BoundRef addr (Atom a) ->
exec addr (Struct IR.Id {IR.arity = 0, IR.str = a}) 0
_ -> prlgError "not callable"
exec' :: (Code -> Code) -> InterpFn exec' :: (Code -> Code) -> InterpFn
exec' fgol = exec' fgol =
withArgs [0] $ \[arg] -> do withArgs [0] $ \[arg] -> do