definition:
|
currentFuncDecls :: TermDomain a => VerifyState a -> IO [FuncDecl]
currentFuncDecls st = do
prog <- getFlatProgFor (vstModules st) (vstCurrModule st)
return $ progFuncs prog
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Gets the function declarations of the current module.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
currentFuncDecls
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.TermDomain.TermDomain a => VerifyState a
-> 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
|