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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
module Utils where
import AnsiCodes (red, yellow)
import FilePath
import List (init, last)
import Opts (Verbosity (..))
import Sort (quickSortBy)
import AST.Span (Span, showPos)
import AST.Token
import AST.PositionUtils (line, col)
import Check.Types (Message (..), CheckF)
fst4:: (a, b, c, d) -> a
fst4 (a, _, _, _) = a
snd4 :: (a, b, c, d) -> b
snd4 (_, b, _, _) = b
thrd4 :: (a, b, c, d) -> c
thrd4 (_, _, c, _) = c
frth4 :: (a, b, c, d) -> d
frth4 (_, _, _, d) = d
status :: String -> a -> IO ()
status str x = putStrLn ("\n" ++ str) >> putStrLn ("\n" ++ show x)
putStrsLn :: [String] -> IO()
putStrsLn = mapIO_ putStrLn
wStatusLn :: Verbosity -> String -> IO()
wStatusLn v s = wOutput v $ putStrLn s
wStatus :: Verbosity -> String -> IO()
wStatus v s = wOutput v $ putStr s
wOutput :: Verbosity -> (IO () -> IO ())
wOutput v = when (v `elem` [VerbDebug, VerbStatus])
wDebug :: Verbosity -> String -> IO()
wDebug v s = when (v == VerbDebug) $ putStrLn s
condMsg :: Bool -> [Message] -> [Message]
condMsg p msg = if p then msg else []
prettyMsg :: Bool -> [Message] -> String
prettyMsg col msgs = "\n" ++ (showMsg col $ sortMsg msgs)
showMsg :: Bool -> [Message] -> String
showMsg _ [] = ""
showMsg col ((Message p m) :ms)
| col = yellow ("Line " ++ showPos p) ++ " "
++ red m ++ "\n" ++ showMsg col ms
| otherwise = "Line " ++ showPos p ++ " " ++ m ++ "\n" ++ showMsg col ms
sortMsg :: [Message] -> [Message]
sortMsg msg = quickSortBy leqMsg msg
leqMsg :: Message -> Message -> Bool
leqMsg (Message p1 _) (Message p2 _) =
if line p1 == line p2
then col p1 <= col p2
else line p1 <= line p2
filterTS :: [(Span, Token)] -> [(Span, Token)]
filterTS = filter $ not . isComment . snd
isComment :: Token -> Bool
t = case t of
LineComment _ -> True
NestedComment _ -> True
_ -> False
|