definition:
|
getProgWithName :: IORef GuiState -> (String->IO ()) -> String -> IO Prog
getProgWithName gs prt name = do
(GS _ _ mods _ _ _ _) <- readIORef gs
ifOrProg (\_->readProgAndStore gs prt name) return
(fromJust (lookup name mods))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- get the FlatCurry program of a specific module (read, if necessary):
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
getProgWithName
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.IORef.IORef GuiState -> (String -> Prelude.IO ()) -> String
-> Prelude.IO FlatCurry.Types.Prog
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|