definition:
|
getImports :: DLevel -> String -> IO [String]
getImports dl moduleName = do
debugMessage dl 3 $ "Reading interface of module " ++ moduleName
readNewestFlatCurryInt moduleName >>= return . progImports
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Get the imports of a module.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
getImports
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.Logging.DLevel -> String -> Prelude.IO [String]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|