CurryInfo: currycheck-4.0.0 / CC.AnalysisHelpers.getUnsafeModuleInfos

definition:
getUnsafeModuleInfos :: Options -> [String] -> IO (QName -> [String])
getUnsafeModuleInfos opts mods = do
  ainfo <- analyzeModules opts "unsafe module" unsafeModuleAnalysis
                          (map dropPublicSuffix mods)
  return (\qn -> maybe [] id (lookupProgInfo (dropPublicQName qn) ainfo))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Analyzes a list of modules for their productivity behavior.
-- If a module is a `_PUBLIC` module, we analyze the original module
-- and map these results to the `_PUBLIC` names, in order to support
-- caching of analysis results for the original modules.
indeterministic:
might be indeterministic
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
getUnsafeModuleInfos
precedence:
no precedence defined
result-values:
_
signature:
CC.Options.Options -> [String] -> 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