1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
module Check.AST.Indent.Imports where
import Curry.SpanInfo
import Curry.Span
import Curry.Position
import Curry.Types
import Text.Pretty
import Types
checkImports :: Module a -> Int -> CSM ()
checkImports e _ =
case e of
(Module _ _ _ _ imps _) -> checkImports' imps
_ -> return ()
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
otherwise ->
checkImports' is
|