definition:
|
getAllFunctions :: IORef GuiState -> (String->IO ()) -> String -> IO [FuncDecl]
getAllFunctions gs prt mod = do
imps <- getAllImportsOfModule gs mod
(GS _ _ mods _ _ _ _) <- readIORef gs
mapM_ (readProgAndStoreIfNecessary gs prt)
(filter ((`elem` imps) . fst) mods)
(GS _ _ newmods _ _ _ _) <- readIORef gs
return (concatMap (progFuncs . progOfIFFP . snd)
(filter ((`elem` imps) . fst) newmods))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Get all function declarations (also imported) of a module:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
getAllFunctions
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.IORef.IORef GuiState -> (String -> Prelude.IO ()) -> String
-> Prelude.IO [FlatCurry.Types.FuncDecl]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|