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
  | 
module AutoCorr.AutoCorrPosAST (correctModule) where
import AST.SpanAST
import AST.PositionUtils (col, line, relocate)
import AST.Span          (Pos, start, end)
import Config.ReadConfig (shallCorrect)
import Config.Types      (Check (..))
correctModule :: Module -> Module
correctModule (Module mps mp1 mi mp2 mesp ids ds)
  = Module mps mp1 mi mp2 mesp ids (map correctDecl ds)
correctDecl :: Decl -> Decl
correctDecl d =
  case d of
       FunctionDecl i   eqs -> FunctionDecl i   (map correctEquation eqs)
       PatternDecl  pat rhs -> PatternDecl  pat (correctRhs rhs)
       _                    -> d
correctEquation :: Equation -> Equation
correctEquation (Equation lhs rhs) = Equation lhs (correctRhs rhs)
correctRhs :: Rhs -> Rhs
correctRhs rhs = case rhs of
  SimpleRhs p e mp ds -> SimpleRhs p (correctExpression e) mp ds
  _                   -> rhs
correctExpression :: Expression -> Expression
correctExpression expr =
  case expr of
    Let sl ds si e
      -> if (shallCorrect CLet)
           then Let sl  (map correctDecl ds)
                    si' (correctExpression e)
           else Let sl  (map correctDecl ds)
                    si  (correctExpression e)
      where pi  = start si
            pl  = start sl
            si' = ((line pi, col pl), end si)
    IfThenElse si i st t se e
      -> if (shallCorrect CIfThenElseKW)
           then IfThenElse si  (correctExpression i)
                           st' (correctExpression t)
                           se' (correctExpression e)
           else IfThenElse si  (correctExpression i)
                           st  (correctExpression t)
                           se  (correctExpression e)
       where pt = start st
             pe = start se
             st' = ((line pt, col pt + 2), end st)
             se' = ((line pe, col pt + 2), end se)
    _ -> expr
 |