CurryInfo: curry-source-1.2.0 / Language.Curry.CheckOperations.checkBlacklistUse

definition:
checkBlacklistUse :: AC.CurryProg -> IO [(QName,String)]
checkBlacklistUse (AC.CurryProg _ _ _ _ _ _ cfdecls _) = do
  blerrors <- values2list (set1 blacklistUsage cfdecls)
  return (map showBlacklistError blerrors)
 where
  showBlacklistError (qf,(q,f)) =
    (qf, "direct use of `" ++ q ++ "." ++ f ++ "' not allowed!")
demand:
argument 1
deterministic:
deterministic operation
documentation:
------------------------------------------------------------------------------
--- Returns messages about uses of black-listed operations occurring
--- in an AbstractCurry program.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({CurryProg}) |-> _}
name:
checkBlacklistUse
precedence:
no precedence defined
result-values:
_
signature:
AbstractCurry.Types.CurryProg -> Prelude.IO [((String, String), String)]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term