definition:
|
calledBy :: [FuncDecl] -> [(QName,[QName])]
calledBy funs = map cfFun funs
where
cfFun (Func fname _ _ _ _) = (fname, concatMap (getCalls fname) funs)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Computes the list of all functions that calls some function.
-- Argument: a list of function declarations
-- Result: a list of pairs of qualified functions names and the corresponding
-- caller functions
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {:,[]}}
|
name:
|
calledBy
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
[FlatCurry.Types.FuncDecl] -> [((String, String), [(String, String)])]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|