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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
module Check.ConstrDecl (constrDeclCheck) where
import AST.Span (Pos, start)
import AST.SpanAST
import AST.PositionUtils
import Check.Types (CheckF, Message (..))
import Config.ReadConfig (shallCheck)
import Config.Types (Check (..))
import Utils (condMsg)
constrDeclCheck :: CheckF ConstrDecl
constrDeclCheck cd = case cd of
RecordDecl _ _ sl fds ss sr -> commas ++ constr ++ doublecolons ++ types
where
pl = start sl
ps = map start ss
pr = start sr
commas
= condMsg
(shallCheck CRecordCommas && not (validConstrDeclC pl ps pr))
[Message pl "RecordDecl: Commas and Brackets are not aligned."]
constr
= condMsg
(shallCheck CRecordFieldNames && not (validConstrDeclID fds))
[Message pl "RecordDecl: Field names are not aligned."]
doublecolons
= condMsg
(shallCheck CRecordDoubleColons && not (validConstrDeclDC fds))
[Message pl "RecordDecl: Doublecolons are not aligned."]
types
= condMsg
(shallCheck CRecordTypes && not (validConstrDeclT fds))
[Message pl "RecordDecl: Types are not aligned."]
_ -> []
validConstrDeclC :: Pos -> [Pos] -> Pos -> Bool
validConstrDeclC pl ps pr =
((col (head ps) == col pl)
&& (allColEq ps) && (col pl == col pr))
validConstrDeclDC :: [FieldDecl] -> Bool
validConstrDeclDC fds
| null fds = True
| otherwise = allColEq (map fieldDeclDCPos fds)
validConstrDeclID :: [FieldDecl] -> Bool
validConstrDeclID fds
| null fds = True
| otherwise = allColEq (map fieldDeclIDPos fds)
validConstrDeclT :: [FieldDecl] -> Bool
validConstrDeclT fds
| null fds = True
| otherwise = allColEq (map fieldDeclTEPos fds)
|