definition:
|
checkImports' :: [ImportDecl] -> CSM ()
checkImports' [] = return ()
checkImports' (i:is) = case i of
(ImportDecl (SpanInfo sp _) _ False _ Nothing) ->
do
report (Message (sp)
(colorizeKey "Imports" <+> text "should be qualified or specified")
( text "use"
<+> colorizeKey "qualified"
<+> text "or explicitly state which entities are to be imported"
)
)
checkImports' is
_ ->
checkImports' is
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Emits a warning if an import is not qualified and no imports are specified.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]}) |-> _ || ({:}) |-> _}
|
name:
|
checkImports'
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[Curry.Types.ImportDecl]
-> Control.Monad.Trans.State.StateT Types.CheckState Data.Functor.Identity.Identity ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|