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
34
35
36
37
38
39
40
41
42
43
|
module MLWarning where
import ParseTypes (fromSimplePos,Warning)
import MLTypes (TPos,WarnID(..))
warn :: TPos -> WarnID -> [Warning] -> [Warning]
warn pos id ws = (fromSimplePos (fst pos),msg) : ws
where msg = case id of
TagNameFirstDigit
-> "ignored first tag name character because it is a digit"
TagNameNotAlphaNum
-> "ignored tag name character because it is not alphanumerical"
TagEndsUnexpected
-> "unexpected characters at end of tag"
UnquotedAttributeEmpty
-> "unquoted attribute values must not be empty"
Unquoted c
-> "ignored " ++ [c] ++ " in unquoted attribute value"
AttributesUnseperated
-> "attributes must be seperated by at least one space character"
UnexpectedEndTag
-> "ignored unexpected end tag"
SingleEndTag
-> "end tag without previous start tag"
wmap :: (a -> (b,[Warning])) -> [a] -> ([b],[Warning])
wmap f ys = wmapper ys
where wmapper :: [a] -> ([b],[Warning])
wmapper [] = ([],[])
wmapper (x:xs) =
let (p,q) = f x
(a,b) = wmapper xs
in (p : a,q ++ b)
|