definition:
|
addNFCsToProgs :: [TAFuncDecl] -> VStateM ()
addNFCsToProgs nfcs = do
vstate <- get
let progs = currTAProgs vstate
addNFC (AProg modname imps tds fds opds) =
let nfcs' = filter (\nfc -> fst (funcName nfc) == modname) nfcs
in AProg modname imps tds (fds ++ nfcs') opds
put (vstate { currTAProgs = map addNFC progs })
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds NFCs to the respective program determined by the qualified name
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
addNFCsToProgs
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[FlatCurry.Annotated.Types.AFuncDecl FlatCurry.Types.TypeExpr]
-> Control.Monad.Trans.State.StateT VState Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|