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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
|
module ACSpans.SpanUtils
( spanModule, spanDecl, spanConstr, spanNewConstr, spanField
, spanTypeExpr, spanEquation, spanPat, spanRhs, spanCondExpr
, spanExpr, spanLiteral, spanStmt, spanIdent, spanQIdent
, spanSIdent, spanSQIdent
, filterTS) where
import List (last)
import ACSpans.Ident ( Ident (..), ModuleIdent (..), QualIdent (..)
, SymQualIdent (..), SymIdent (..))
import ACSpans.Span
import ACSpans.SpanAST
import ACSpans.Token
filterTS :: [(Span, Token)] -> [(Span, Token)]
filterTS = filter $ not . isComment . snd
isComment :: Token -> Bool
t = case t of
LineComment _ -> True
NestedComment _ -> True
_ -> False
spModule :: Module -> Pos
spModule (Module _ mspan _ _ _ is ds) = case mspan of
Just s -> start s
Nothing
| not (null is) -> spImportDecl $ head is
| not (null ds) -> spDecl $ head ds
| otherwise -> startPos
spDecl :: Decl -> Pos
spDecl (InfixDecl i _ _ _) = spInfix i
spDecl (DataDecl s _ _ _ _ _) = start s
spDecl (NewtypeDecl s _ _ _ _) = start s
spDecl (TypeDecl s _ _ _ _) = start s
spDecl (TypeSig syms _ _ _) = case syms of
[] -> error "SpanUtils.spDecl: TypeSig with empty identifier list"
sym:_ -> spSymIdent sym
spDecl (FunctionDecl i _) = spIdent i
spDecl (ForeignDecl s _ _ _ _ _) = start s
spDecl (ExternalDecl syms _ _) = case syms of
[] -> error "SpanUtils.spDecl: ExternalDecl with empty identifier list"
sym:_ -> spSymIdent sym
spDecl (PatternDecl p _) = spPattern p
spDecl (FreeDecl is _ _) = case is of
[] -> error "SpanUtils.spDecl: FreeDecl with empty identifier list"
i:_ -> spIdent i
spConstr :: ConstrDecl -> Pos
spConstr (ConstrDecl _ i _) = spIdent i
spConstr (ConOpDecl _ ty _ _) = spTypeExpr ty
spConstr (RecordDecl _ i _ _ _ _) = spIdent i
spNewConstr :: NewConstrDecl -> Pos
spNewConstr (NewConstrDecl _ i _) = spIdent i
spNewConstr (NewRecordDecl _ i _ _ _) = spIdent i
spField :: FieldDecl -> Pos
spField (FieldDecl is _ _ _) = case is of
[] -> error "SpanUtils.spField: FieldDecl with empty identifier list"
i:_ -> spIdent i
spTypeExpr :: TypeExpr -> Pos
spTypeExpr (ConstructorType mspan c _ _) = case mspan of
Just s -> start s
Nothing -> spQIdent c
spTypeExpr (VariableType i) = spIdent i
spTypeExpr (TupleType s _ _ _) = start s
spTypeExpr (ListType s _ _) = start s
spTypeExpr (ArrowType ty _ _) = spTypeExpr ty
spTypeExpr (ParenType s _ _) = start s
spEquation :: Equation -> Pos
spEquation (Equation lhs _) = spLhs lhs
spPattern :: Pattern -> Pos
spPattern (LiteralPattern l) = spLiteral l
spPattern (NegativePattern i _) = spIdent i
spPattern (VariablePattern i) = spIdent i
spPattern (ConstructorPattern qi _) = spQIdent qi
spPattern (InfixPattern p _ _) = spPattern p
spPattern (ParenPattern s _ _) = start s
spPattern (RecordPattern qi _ _ _ _) = spQIdent qi
spPattern (TuplePattern s _ _ _) = start s
spPattern (ListPattern s _ _ _) = start s
spPattern (AsPattern i _ _) = spIdent i
spPattern (LazyPattern s _) = start s
spPattern (FunctionPattern qi _) = spQIdent qi
spPattern (InfixFuncPattern p _ _) = spPattern p
spLhs :: Lhs -> Pos
spLhs (FunLhs si _) = spSymIdent si
spLhs (OpLhs p _ _) = spPattern p
spLhs (ApLhs lhs _) = spLhs lhs
spRhs :: Rhs -> Pos
spRhs (SimpleRhs _ e _ _) = spExpr e
spRhs (GuardedRhs _ ces _ _ _) = spCondExpr $ head ces
spCondExpr :: CondExpr -> Pos
spCondExpr (CondExpr e _ _) = spExpr e
spExpr :: Expression -> Pos
spExpr (Literal l) = spLiteral l
spExpr (Variable sqi) = spSymQualIdent sqi
spExpr (Constructor sqi) = spSymQualIdent sqi
spExpr (Paren s _ _) = start s
spExpr (Typed e _ _) = spExpr e
spExpr (Record qi _ _ _ _) = spQIdent qi
spExpr (RecordUpdate e _ _ _ _) = spExpr e
spExpr (Tuple s _ _ _) = start s
spExpr (List s _ _ _) = start s
spExpr (ListCompr s _ _ _ _ _) = start s
spExpr (EnumFrom s _ _ _) = start s
spExpr (EnumFromThen s _ _ _ _ _) = start s
spExpr (EnumFromTo s _ _ _ _) = start s
spExpr (EnumFromThenTo s _ _ _ _ _ _) = start s
spExpr (UnaryMinus i _) = spIdent i
spExpr (Apply e _) = spExpr e
spExpr (InfixApply e _ _) = spExpr e
spExpr (LeftSection s _ _ _) = start s
spExpr (RightSection s _ _ _) = start s
spExpr (Lambda s _ _ _) = start s
spExpr (Let s _ _ _) = start s
spExpr (Do s _ _) = start s
spExpr (IfThenElse s _ _ _ _ _) = start s
spExpr (Case _ s _ _ _) = start s
spLiteral :: Literal -> Pos
spLiteral (Char s _) = start s
spLiteral (Int s _) = start s
spLiteral (Float s _) = start s
spLiteral (String s _) = start s
spStmt :: Statement -> Pos
spStmt (StmtExpr e) = spExpr e
spStmt (StmtDecl s _) = start s
spStmt (StmtBind _ p _) = spPattern p
spIdent :: Ident -> Pos
spIdent = start . idSpan
spQIdent :: QualIdent -> Pos
spQIdent = start . idSpan . qidIdent
spSymIdent :: SymIdent -> Pos
spSymIdent (SymIdent ms i _) = case ms of
Just s -> start s
Nothing -> spIdent i
spSymQualIdent :: SymQualIdent -> Pos
spSymQualIdent (SymQualIdent ms qi _) = case ms of
Just s -> start s
Nothing -> spQIdent qi
spInfix :: Infix -> Pos
spInfix (InfixL s) = start s
spInfix (InfixR s) = start s
spInfix (Infix s) = start s
spImportDecl :: ImportDecl -> Pos
spImportDecl (ImportDecl s _ _ _ _ _ _) = start s
epModule :: Module -> Pos
epModule (Module _ _ _ mspan mes is ds)
| not (null ds) = epDecl $ last ds
| not (null is) = epImportDecl $ last is
| otherwise = case mes of
Just spec -> epExportSpec spec
Nothing -> case mspan of
Just s -> end s
Nothing -> startPos
epDecl :: Decl -> Pos
epDecl (InfixDecl _ _ ops _)
| null ops = error "SpanUtils.epDecl: InfixDecl with empty infix operator list"
| otherwise = epSymIdent $ last ops
epDecl (DataDecl _ i _ _ cs _)
| null cs = epIdent i
| otherwise = epConstr $ last cs
epDecl (NewtypeDecl _ _ _ _ nc) = epNewConstr nc
epDecl (TypeDecl _ _ _ _ ty) = epTypeExpr ty
epDecl (TypeSig _ _ _ ty) = epTypeExpr ty
epDecl (FunctionDecl _ eqs)
| null eqs = error "SpanUtils.epDecl: FunctionDecl with empty equation list"
| otherwise = epEquation $ last eqs
epDecl (ForeignDecl _ _ _ _ _ ty) = epTypeExpr ty
epDecl (ExternalDecl _ _ s) = end s
epDecl (PatternDecl _ rhs) = epRhs rhs
epDecl (FreeDecl _ _ s) = end s
epConstr :: ConstrDecl -> Pos
epConstr (ConstrDecl _ c tys)
| null tys = epIdent c
| otherwise = epTypeExpr $ last tys
epConstr (ConOpDecl _ _ _ ty) = epTypeExpr ty
epConstr (RecordDecl _ _ _ _ _ s) = end s
epNewConstr :: NewConstrDecl -> Pos
epNewConstr (NewConstrDecl _ _ ty) = epTypeExpr ty
epNewConstr (NewRecordDecl _ _ _ _ s) = end s
epField :: FieldDecl -> Pos
epField (FieldDecl _ spans _ ty) = case spans of
[s] -> end s
_ -> epTypeExpr ty
epTypeExpr :: TypeExpr -> Pos
epTypeExpr (ConstructorType _ c tys mspan) = case mspan of
Just s -> end s
Nothing
| null tys -> epQIdent c
| otherwise -> epTypeExpr $ last tys
epTypeExpr (VariableType i) = epIdent i
epTypeExpr (TupleType _ _ _ s) = end s
epTypeExpr (ListType _ _ s) = end s
epTypeExpr (ArrowType _ _ ty) = epTypeExpr ty
epTypeExpr (ParenType _ _ s) = end s
epEquation :: Equation -> Pos
epEquation (Equation _ rhs) = epRhs rhs
epPattern :: Pattern -> Pos
epPattern (LiteralPattern l) = epLiteral l
epPattern (NegativePattern _ l) = epLiteral l
epPattern (VariablePattern i) = epIdent i
epPattern (ConstructorPattern qi ps)
| null ps = epQIdent qi
| otherwise = epPattern $ last ps
epPattern (InfixPattern _ _ p) = epPattern p
epPattern (ParenPattern _ _ s) = end s
epPattern (RecordPattern _ _ _ _ s) = end s
epPattern (TuplePattern _ _ _ s) = end s
epPattern (ListPattern _ _ _ s) = end s
epPattern (AsPattern _ _ p) = epPattern p
epPattern (LazyPattern _ p) = epPattern p
epPattern (FunctionPattern qi ps)
| null ps = epQIdent qi
| otherwise = epPattern $ last ps
epPattern (InfixFuncPattern _ _ p) = epPattern p
epRhs :: Rhs -> Pos
epRhs (SimpleRhs _ e _ ds)
| null ds = epExpr e
| otherwise = epDecl $ last ds
epRhs (GuardedRhs _ ces _ _ ds)
| null ds = if null ces then error "SpanUtils.epRhs: GuardedRhs with empty conditional expression list"
else epCondExpr $ last ces
| otherwise = epDecl $ last ds
epCondExpr :: CondExpr -> Pos
epCondExpr (CondExpr _ _ e) = epExpr e
epExpr :: Expression -> Pos
epExpr (Literal l) = epLiteral l
epExpr (Variable sqi) = epSymQualIdent sqi
epExpr (Constructor sqi) = epSymQualIdent sqi
epExpr (Paren _ _ s) = end s
epExpr (Typed _ _ ty) = epTypeExpr ty
epExpr (Record _ _ _ _ s) = end s
epExpr (RecordUpdate _ _ _ _ s) = end s
epExpr (Tuple _ _ _ s) = end s
epExpr (List _ _ _ s) = end s
epExpr (ListCompr _ _ _ _ _ s) = end s
epExpr (EnumFrom _ _ _ s) = end s
epExpr (EnumFromThen _ _ _ _ _ s) = end s
epExpr (EnumFromTo _ _ _ _ s) = end s
epExpr (EnumFromThenTo _ _ _ _ _ _ s) = end s
epExpr (UnaryMinus _ e) = epExpr e
epExpr (Apply _ e) = epExpr e
epExpr (InfixApply _ _ e) = epExpr e
epExpr (LeftSection _ _ _ s) = end s
epExpr (RightSection _ _ _ s) = end s
epExpr (Lambda _ _ _ e) = epExpr e
epExpr (Let _ _ _ e) = epExpr e
epExpr (Do _ _ e) = epExpr e
epExpr (IfThenElse _ _ _ _ _ e) = epExpr e
epExpr (Case _ _ _ _ alts)
| null alts = error "SpanUtils.epExpr: Case with empty alternative list"
| otherwise = epAlt $ last alts
epLiteral :: Literal -> Pos
epLiteral (Char s _) = end s
epLiteral (Int s _) = end s
epLiteral (Float s _) = end s
epLiteral (String s _) = end s
epStmt :: Statement -> Pos
epStmt (StmtExpr e) = epExpr e
epStmt (StmtDecl _ ds)
| null ds = error "SpanUtils.epStmt: StmtDecl with empty declaration list"
| otherwise = epDecl $ last ds
epStmt (StmtBind _ _ e) = epExpr e
epIdent :: Ident -> Pos
epIdent = end . idSpan
epQIdent :: QualIdent -> Pos
epQIdent = end . idSpan . qidIdent
epSymIdent :: SymIdent -> Pos
epSymIdent (SymIdent _ i ms) = case ms of
Just s -> end s
Nothing -> epIdent i
epSymQualIdent :: SymQualIdent -> Pos
epSymQualIdent (SymQualIdent _ qi ms) = case ms of
Just s -> end s
Nothing -> epQIdent qi
epMIdent :: ModuleIdent -> Pos
epMIdent = end . midSpan
epImportDecl :: ImportDecl -> Pos
epImportDecl (ImportDecl _ _ m _ _ mm mspec) = case mspec of
Just spec -> epImportSpec spec
Nothing -> case mm of
Just mi -> epMIdent mi
Nothing -> epMIdent m
epImportSpec :: ImportSpec -> Pos
epImportSpec (Importing _ _ _ s) = end s
epImportSpec (Hiding _ _ _ _ s) = end s
epExportSpec :: ExportSpec -> Pos
epExportSpec (Exporting _ _ _ s) = end s
epAlt :: Alt -> Pos
epAlt (Alt _ rhs) = epRhs rhs
spanModule :: Module -> Span
spanModule p = (spModule p, epModule p)
spanDecl :: Decl -> Span
spanDecl d = (spDecl d, epDecl d)
spanConstr :: ConstrDecl -> Span
spanConstr c = (spConstr c, epConstr c)
spanNewConstr :: NewConstrDecl -> Span
spanNewConstr nc = (spNewConstr nc, epNewConstr nc)
spanField :: FieldDecl -> Span
spanField f = (spField f, epField f)
spanTypeExpr :: TypeExpr -> Span
spanTypeExpr ty = (spTypeExpr ty, epTypeExpr ty)
spanEquation :: Equation -> Span
spanEquation eq = (spEquation eq, epEquation eq)
spanPat :: Pattern -> Span
spanPat p = (spPattern p, epPattern p)
spanRhs :: Rhs -> Span
spanRhs rhs = (spRhs rhs, epRhs rhs)
spanCondExpr :: CondExpr -> Span
spanCondExpr cexp = (spCondExpr cexp, epCondExpr cexp)
spanExpr :: Expression -> Span
spanExpr e = (spExpr e, epExpr e)
spanLiteral :: Literal -> Span
spanLiteral l = (spLiteral l, epLiteral l)
spanStmt :: Statement -> Span
spanStmt s = (spStmt s, epStmt s)
spanIdent :: Ident -> Span
spanIdent = idSpan
spanQIdent :: QualIdent -> Span
spanQIdent = idSpan . qidIdent
spanSIdent :: SymIdent -> Span
spanSIdent sym = (spSymIdent sym, epSymIdent sym)
spanSQIdent :: SymQualIdent -> Span
spanSQIdent sym = (spSymQualIdent sym, epSymQualIdent sym)
|