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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
|
module AbstractCurry.Transform where
import AbstractCurry.Types
import AbstractCurry.Select
import List (nub, union)
type Update a b = (b -> b) -> a -> a
trCProg :: (String -> [String] -> (Maybe CDefaultDecl) -> [CClassDecl]
-> [CInstanceDecl] -> [CTypeDecl] -> [CFuncDecl] -> [COpDecl] -> a)
-> CurryProg -> a
trCProg prog (CurryProg name imps dfltdecl clsdecls instdecls types funcs ops) =
prog name imps dfltdecl clsdecls instdecls types funcs ops
updCProg :: (String -> String) ->
([String] -> [String]) ->
(Maybe CDefaultDecl -> Maybe CDefaultDecl) ->
([CClassDecl] -> [CClassDecl]) ->
([CInstanceDecl] -> [CInstanceDecl]) ->
([CTypeDecl] -> [CTypeDecl]) ->
([CFuncDecl] -> [CFuncDecl]) ->
([COpDecl] -> [COpDecl]) -> CurryProg -> CurryProg
updCProg fn fi fdft fcl fci ft ff fo = trCProg prog
where
prog name imps dfltdecl clsdecls instdecls types funcs ops =
CurryProg (fn name) (fi imps) (fdft dfltdecl) (fcl clsdecls) (fci instdecls)
(ft types) (ff funcs) (fo ops)
updCProgName :: Update CurryProg String
updCProgName f = updCProg f id id id id id id id
trCDefaultDecl :: ([CTypeExpr] -> a) -> CDefaultDecl -> a
trCDefaultDecl defdecl (CDefaultDecl texps) = defdecl texps
updCDefaultDecl :: ([CTypeExpr] -> [CTypeExpr])
-> CDefaultDecl -> CDefaultDecl
updCDefaultDecl fts = trCDefaultDecl (\texps -> CDefaultDecl (fts texps))
trCContext :: ([CConstraint] -> a) -> CContext -> a
trCContext ctxt (CContext constrs) = ctxt constrs
updCContext :: ([CConstraint] -> [CConstraint])
-> CContext -> CContext
updCContext fc = trCContext (\constrs -> CContext (fc constrs))
trCClassDecl ::
(QName -> CVisibility -> CContext -> CTVarIName -> [CFuncDecl] -> a)
-> CClassDecl -> a
trCClassDecl cls (CClass name vis ctxt tvar funcs) =
cls name vis ctxt tvar funcs
updCClassDecl :: (QName -> QName)
-> (CVisibility -> CVisibility)
-> (CContext -> CContext)
-> (CTVarIName -> CTVarIName)
-> ([CFuncDecl] -> [CFuncDecl])
-> CClassDecl -> CClassDecl
updCClassDecl fn fv fc ft ff = trCClassDecl cls
where
cls name vis ctxt tvar funcs =
CClass (fn name) (fv vis) (fc ctxt) (ft tvar) (ff funcs)
trCInstanceDecl :: (QName -> CContext -> CTypeExpr -> [CFuncDecl] -> a)
-> CInstanceDecl -> a
trCInstanceDecl inst (CInstance name ctxt texp funcs) =
inst name ctxt texp funcs
updCInstanceDecl :: (QName -> QName)
-> (CContext -> CContext)
-> (CTypeExpr -> CTypeExpr)
-> ([CFuncDecl] -> [CFuncDecl])
-> CInstanceDecl -> CInstanceDecl
updCInstanceDecl fn fc ft ff = trCInstanceDecl inst
where
inst name ctxt texp funcs =
CInstance (fn name) (fc ctxt) (ft texp) (ff funcs)
trCTypeDecl ::
(QName -> CVisibility -> [CTVarIName] -> [CConsDecl] -> [QName] -> a)
-> (QName -> CVisibility -> [CTVarIName] -> CTypeExpr -> a)
-> (QName -> CVisibility -> [CTVarIName] -> CConsDecl -> [QName] -> a)
-> CTypeDecl -> a
trCTypeDecl typ _ _ (CType name vis params cs dvs) =
typ name vis params cs dvs
trCTypeDecl _ tsyn _ (CTypeSyn name vis params syn) = tsyn name vis params syn
trCTypeDecl _ _ tntyp (CNewType name vis params nt dvs) =
tntyp name vis params nt dvs
updCTypeDecl :: (QName -> QName)
-> (CVisibility -> CVisibility)
-> ([CTVarIName] -> [CTVarIName])
-> ([CConsDecl] -> [CConsDecl])
-> (CTypeExpr -> CTypeExpr)
-> (CConsDecl -> CConsDecl)
-> ([QName] -> [QName])
-> CTypeDecl -> CTypeDecl
updCTypeDecl fn fv fp fc fs ft fd = trCTypeDecl typ tsyn tntyp
where
typ name vis params cs der =
CType (fn name) (fv vis) (fp params) (fc cs) (fd der)
tsyn name vis params syn = CTypeSyn (fn name) (fv vis) (fp params) (fs syn)
tntyp name vis params ntyp der =
CNewType (fn name) (fv vis) (fp params) (ft ntyp) (fd der)
updCTypeDeclName :: Update CTypeDecl QName
updCTypeDeclName f = updCTypeDecl f id id id id id id
trCConsDecl ::
([CTVarIName] -> CContext -> QName -> CVisibility -> [CTypeExpr] -> a)
-> ([CTVarIName] -> CContext -> QName -> CVisibility -> [CFieldDecl] -> a)
-> CConsDecl -> a
trCConsDecl cons _ (CCons qtvars ctxt name vis args) =
cons qtvars ctxt name vis args
trCConsDecl _ rec (CRecord qtvars ctxt name vis args) =
rec qtvars ctxt name vis args
updCConsDecl :: ([CTVarIName] -> [CTVarIName])
-> (CContext -> CContext)
-> (QName -> QName)
-> (CVisibility -> CVisibility)
-> ([CTypeExpr] -> [CTypeExpr])
-> ([CFieldDecl] -> [CFieldDecl])
-> CConsDecl -> CConsDecl
updCConsDecl fqv fc fn fv fts ffs = trCConsDecl cons rec
where
cons qtvars ctxt name vis args =
CCons (fqv qtvars) (fc ctxt) (fn name) (fv vis) (fts args)
rec qtvars ctxt name vis args =
CRecord (fqv qtvars) (fc ctxt) (fn name) (fv vis) (ffs args)
updCConsDeclName :: Update CConsDecl QName
updCConsDeclName f = updCConsDecl id id f id id id
trCFieldDecl :: (QName -> CVisibility -> CTypeExpr -> a)
-> CFieldDecl -> a
trCFieldDecl field (CField name vis texp) = field name vis texp
updCFieldDecl :: (QName -> QName)
-> (CVisibility -> CVisibility)
-> (CTypeExpr -> CTypeExpr)
-> CFieldDecl -> CFieldDecl
updCFieldDecl fn fv ft = trCFieldDecl field
where
field name vis texp = CField (fn name) (fv vis) (ft texp)
updCFieldDeclName :: Update CFieldDecl QName
updCFieldDeclName f = updCFieldDecl f id id
trCQualTypeExpr :: (CContext -> CTypeExpr -> a) -> CQualTypeExpr -> a
trCQualTypeExpr qtexp (CQualType ctxt texp) = qtexp ctxt texp
updCQualTypeExpr :: (CContext -> CContext)
-> (CTypeExpr -> CTypeExpr)
-> CQualTypeExpr -> CQualTypeExpr
updCQualTypeExpr fc ft =
trCQualTypeExpr (\ctxt texp -> CQualType (fc ctxt) (ft texp))
trCTypeExpr :: (CTVarIName -> a)
-> (QName -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> CTypeExpr -> a
trCTypeExpr tvar tcons functype applytype texp = trTE texp
where
trTE (CTVar n) = tvar n
trTE (CTCons name) = tcons name
trTE (CFuncType from to) = functype (trTE from) (trTE to)
trTE (CTApply from to) = applytype (trTE from) (trTE to)
updTConsApp :: (QName -> CTypeExpr) -> CTypeExpr -> CTypeExpr
updTConsApp tcons = trCTypeExpr CTVar tcons CFuncType CTApply
trCOpDecl :: (QName -> CFixity -> Int -> a) -> COpDecl -> a
trCOpDecl op (COp name fix prec) = op name fix prec
updCOpDecl :: (QName -> QName) -> (CFixity -> CFixity) -> (Int -> Int)
-> COpDecl -> COpDecl
updCOpDecl fn ff fp = trCOpDecl op
where
op name fix prec = COp (fn name) (ff fix) (fp prec)
updCOpName :: Update COpDecl QName
updCOpName f = updCOpDecl f id id
trCFuncDecl ::
(String -> QName -> Int -> CVisibility -> CQualTypeExpr -> [CRule] -> a)
-> CFuncDecl -> a
trCFuncDecl func (CFunc name arity vis t rs) = func "" name arity vis t rs
trCFuncDecl func (CmtFunc cm name arity vis t rs) = func cm name arity vis t rs
updCFuncDecl :: (String -> String)
-> (QName -> QName)
-> (Int -> Int)
-> (CVisibility -> CVisibility)
-> (CQualTypeExpr -> CQualTypeExpr)
-> ([CRule] -> [CRule])
-> CFuncDecl -> CFuncDecl
updCFuncDecl fc fn fa fv ft fr = trCFuncDecl func
where
func cmt name arity vis t rules =
if null cmt
then CFunc (fn name) (fa arity) (fv vis) (ft t) (fr rules)
else CmtFunc (fc cmt) (fn name) (fa arity) (fv vis) (ft t) (fr rules)
trCRule :: ([CPattern] -> CRhs -> a) -> CRule -> a
trCRule rule (CRule pats rhs) = rule pats rhs
updCRule :: ([CPattern] -> [CPattern])
-> (CRhs -> CRhs)
-> CRule -> CRule
updCRule fp fr = trCRule rule
where
rule pats rhs = CRule (fp pats) (fr rhs)
trCRhs :: (CExpr -> [CLocalDecl] -> a)
-> ([(CExpr, CExpr)] -> [CLocalDecl] -> a)
-> CRhs -> a
trCRhs srhs _ (CSimpleRhs exp locals) = srhs exp locals
trCRhs _ grhs (CGuardedRhs gexps locals) = grhs gexps locals
updCRhs :: (CExpr -> CExpr)
-> ([(CExpr, CExpr)] -> [(CExpr, CExpr)])
-> ([CLocalDecl] -> [CLocalDecl])
-> CRhs -> CRhs
updCRhs fe fg fl = trCRhs srhs grhs
where
srhs exp locals = CSimpleRhs (fe exp) (fl locals)
grhs gexps locals = CGuardedRhs (fg gexps) (fl locals)
trCLocalDecl :: (CFuncDecl -> a)
-> (CPattern -> CRhs -> a)
-> ([CVarIName] -> a)
-> CLocalDecl -> a
trCLocalDecl lfun _ _ (CLocalFunc fdecl) = lfun fdecl
trCLocalDecl _ lpat _ (CLocalPat pat rhs) = lpat pat rhs
trCLocalDecl _ _ vars (CLocalVars vs) = vars vs
updCLocalDecl :: (CFuncDecl -> CFuncDecl)
-> (CPattern -> CPattern)
-> (CRhs -> CRhs)
-> ([CVarIName] -> [CVarIName])
-> CLocalDecl -> CLocalDecl
updCLocalDecl ff fp fr fv = trCLocalDecl lfun lpat lvars
where
lfun fdecl = CLocalFunc (ff fdecl)
lpat pat rhs = CLocalPat (fp pat) (fr rhs)
lvars vars = CLocalVars (fv vars)
trCPattern :: (CVarIName -> a)
-> (CLiteral -> a)
-> (QName -> [a] -> a)
-> (CVarIName -> a -> a)
-> (QName -> [a] -> a)
-> (QName -> [CField a] -> a)
-> CPattern -> a
trCPattern fv fl fc fa ff fr pattern = trP pattern
where
trP (CPVar pvar) = fv pvar
trP (CPLit lit) = fl lit
trP (CPComb c pats) = fc c (map trP pats)
trP (CPAs v pat) = fa v (trP pat)
trP (CPFuncComb fn pats) = ff fn (map trP pats)
trP (CPLazy pat) = trP pat
trP (CPRecord r fs) = fr r (map (\(n,p) -> (n,trP p)) fs)
updCPattern :: (CVarIName -> CVarIName)
-> (CLiteral -> CLiteral)
-> (QName -> QName)
-> CPattern -> CPattern
updCPattern fv fl fn = trCPattern pvar plit pcomb pas pfcomb prec
where
pvar var = CPVar (fv var)
plit lit = CPLit (fl lit)
pcomb c pats = CPComb (fn c) (map (updCPattern fv fl fn) pats)
pas v pat = CPAs (fv v) (updCPattern fv fl fn pat)
pfcomb f pats = CPFuncComb (fn f) (map (updCPattern fv fl fn) pats)
prec r fields = CPRecord (fn r)
(map (\ (n,p) -> (fn n, updCPattern fv fl fn p)) fields)
trExpr :: (CVarIName -> a)
-> (CLiteral -> a)
-> (QName -> a)
-> (a -> a -> a)
-> ([CPattern] -> a -> a)
-> ([CLocalDecl] -> a -> a)
-> ([CStatement] -> a)
-> (a -> [CStatement] -> a)
-> (CCaseType -> a -> [(CPattern, CRhs)] -> a)
-> (a -> CQualTypeExpr -> a)
-> (QName -> [CField a] -> a)
-> (a -> [CField a] -> a)
-> CExpr -> a
trExpr var lit sym app lam clet cdo lcomp cas typ rcon rupd exp = trE exp
where
trE (CVar n) = var n
trE (CLit l) = lit l
trE (CSymbol n) = sym n
trE (CApply e1 e2) = app (trE e1) (trE e2)
trE (CLambda pats e) = lam pats (trE e)
trE (CLetDecl ls e) = clet ls (trE e)
trE (CDoExpr stm) = cdo stm
trE (CListComp e stm) = lcomp (trE e) stm
trE (CCase ct e branches) = cas ct (trE e) branches
trE (CTyped e te) = typ (trE e) te
trE (CRecConstr rn fds) = rcon rn (map (\ (lb,e) -> (lb, trE e)) fds)
trE (CRecUpdate e fds) = rupd (trE e) (map (\ (lb,v) -> (lb, trE v)) fds)
trCStatement :: (CExpr -> a)
-> (CPattern -> CExpr -> a)
-> ([CLocalDecl] -> a)
-> CStatement -> a
trCStatement sexp _ _ (CSExpr exp) = sexp exp
trCStatement _ spat _ (CSPat pat exp) = spat pat exp
trCStatement _ _ slet (CSLet locals) = slet locals
updCStatement :: (CExpr -> CExpr)
-> (CPattern -> CPattern)
-> (CLocalDecl -> CLocalDecl)
-> CStatement -> CStatement
updCStatement fe fp fd = trCStatement sexp spat slet
where
sexp exp = CSExpr (fe exp)
spat pat exp = CSPat (fp pat) (fe exp)
slet locals = CSLet (map fd locals)
renameCurryModule :: String -> CurryProg -> CurryProg
renameCurryModule newname prog =
updCProgName (const newname) (updQNamesInCProg rnm prog)
where
rnm mn@(mod,n) | mod == progName prog = (newname,n)
| otherwise = mn
updQNamesInCProg :: Update CurryProg QName
updQNamesInCProg f =
updCProg id
id
(updQNamesInCDefaultDecl f)
(map (updQNamesInCClassDecl f))
(map (updQNamesInCInstanceDecl f))
(map (updQNamesInCTypeDecl f))
(map (updQNamesInCFuncDecl f))
(map (updCOpName f))
updQNamesInCDefaultDecl :: Update (Maybe CDefaultDecl) QName
updQNamesInCDefaultDecl f = updateDefltDecl
where
updateDefltDecl Nothing = Nothing
updateDefltDecl (Just defdecl) =
Just (updCDefaultDecl (map (updQNamesInCTypeExpr f)) defdecl)
updQNamesInCClassDecl :: Update CClassDecl QName
updQNamesInCClassDecl f =
updCClassDecl f id (updQNamesInCContext f) id
(map (updQNamesInCFuncDecl f))
updQNamesInCInstanceDecl :: Update CInstanceDecl QName
updQNamesInCInstanceDecl f =
updCInstanceDecl f
(updQNamesInCContext f)
(updQNamesInCTypeExpr f)
(map (updQNamesInCFuncDecl f))
updQNamesInCTypeDecl :: Update CTypeDecl QName
updQNamesInCTypeDecl f =
updCTypeDecl f id id
(map (updQNamesInCConsDecl f))
(updQNamesInCTypeExpr f)
(updQNamesInCConsDecl f)
(map f)
updQNamesInCConsDecl :: Update CConsDecl QName
updQNamesInCConsDecl f =
updCConsDecl id (updQNamesInCContext f) f id
(map (updQNamesInCTypeExpr f))
(map (updQNamesInCFieldDecl f))
updQNamesInCContext :: Update CContext QName
updQNamesInCContext f = updCContext (map updConstr)
where
updConstr (n,texp) = (f n, updQNamesInCTypeExpr f texp)
updQNamesInCFieldDecl :: Update CFieldDecl QName
updQNamesInCFieldDecl f = updCFieldDecl f id (updQNamesInCTypeExpr f)
updQNamesInCQualTypeExpr :: Update CQualTypeExpr QName
updQNamesInCQualTypeExpr f =
updCQualTypeExpr (updQNamesInCContext f) (updQNamesInCTypeExpr f)
updQNamesInCTypeExpr :: Update CTypeExpr QName
updQNamesInCTypeExpr f = updTConsApp (CTCons . f)
updQNamesInCFuncDecl :: Update CFuncDecl QName
updQNamesInCFuncDecl f =
updCFuncDecl id f id id
(updQNamesInCQualTypeExpr f)
(map (updQNamesInCRule f))
updQNamesInCRule :: Update CRule QName
updQNamesInCRule f =
updCRule (map (updQNamesInCPattern f))
(updQNamesInCRhs f)
updQNamesInCRhs :: Update CRhs QName
updQNamesInCRhs f =
updCRhs (updQNamesInCExpr f)
(map (\ (g,e) -> (updQNamesInCExpr f g, updQNamesInCExpr f e)))
(map (updQNamesInCLocalDecl f))
updQNamesInCLocalDecl :: Update CLocalDecl QName
updQNamesInCLocalDecl f =
updCLocalDecl (updQNamesInCFuncDecl f)
(updQNamesInCPattern f)
(updQNamesInCRhs f)
id
updQNamesInCPattern :: Update CPattern QName
updQNamesInCPattern f = updCPattern id id f
updQNamesInCStatement :: Update CStatement QName
updQNamesInCStatement f =
updCStatement (updQNamesInCExpr f)
(updQNamesInCPattern f)
(updQNamesInCLocalDecl f)
updQNamesInCExpr :: Update CExpr QName
updQNamesInCExpr f =
trExpr CVar CLit (CSymbol . f) CApply lam ldecl doexp lcomp ccase ctyped
reccon recupd
where
lam pats exp = CLambda (map (updQNamesInCPattern f) pats) exp
ldecl locals exp = CLetDecl (map (updQNamesInCLocalDecl f) locals) exp
doexp stms = CDoExpr (map (updQNamesInCStatement f) stms)
lcomp exp stms = CListComp exp (map (updQNamesInCStatement f) stms)
ccase ct exp bs = CCase ct exp
(map (\ (pat,rhs) -> (updQNamesInCPattern f pat, updQNamesInCRhs f rhs)) bs)
ctyped exp texp = CTyped exp (updQNamesInCQualTypeExpr f texp)
reccon rec fields = CRecConstr (f rec) (map (\ (l,e) -> (f l,e)) fields)
recupd exp fields = CRecUpdate exp (map (\ (l,e) -> (f l,e)) fields)
typesOfCurryProg :: CurryProg -> [QName]
typesOfCurryProg =
trCProg (\_ _ dfts cls insts types funcs _ ->
typesOfDefault dfts ++
unionMap typesOfCClassDecl cls ++
unionMap typesOfCInstanceDecl insts ++
unionMap typesOfCTypeDecl types ++
unionMap typesOfCFuncDecl funcs)
where
typesOfDefault Nothing = []
typesOfDefault (Just (CDefaultDecl texps)) = concatMap typesOfTypeExpr texps
typesOfCClassDecl :: CClassDecl -> [QName]
typesOfCClassDecl =
trCClassDecl (\_ _ ctxt _ funcs -> typesOfContext ctxt ++
unionMap typesOfCFuncDecl funcs)
typesOfCInstanceDecl :: CInstanceDecl -> [QName]
typesOfCInstanceDecl =
trCInstanceDecl (\_ ctxt texp funcs -> typesOfContext ctxt ++
typesOfTypeExpr texp ++
unionMap typesOfCFuncDecl funcs)
typesOfCTypeDecl :: CTypeDecl -> [QName]
typesOfCTypeDecl =
trCTypeDecl (\qn _ _ cdecls _ -> qn : concatMap typesOfConsDecl cdecls)
(\qn _ _ texp -> qn : typesOfTypeExpr texp)
(\qn _ _ cdecl _ -> qn : typesOfConsDecl cdecl)
typesOfConsDecl :: CConsDecl -> [QName]
typesOfConsDecl =
trCConsDecl (\_ ctxt _ _ texps -> typesOfContext ctxt ++
concatMap typesOfTypeExpr texps)
(\_ ctxt _ _ fddecls -> typesOfContext ctxt ++
concatMap typesOfFieldDecl fddecls)
typesOfFieldDecl :: CFieldDecl -> [QName]
typesOfFieldDecl = trCFieldDecl (\_ _ texp -> typesOfTypeExpr texp)
typesOfContext :: CContext -> [QName]
typesOfContext = trCContext (concatMap (typesOfTypeExpr . snd))
typesOfTypeExpr :: CTypeExpr -> [QName]
typesOfTypeExpr = trCTypeExpr (\_ -> [])
(\qn -> [qn])
(++)
(++)
typesOfQualTypeExpr :: CQualTypeExpr -> [QName]
typesOfQualTypeExpr =
trCQualTypeExpr (\ctxt texp -> typesOfContext ctxt ++ typesOfTypeExpr texp)
typesOfCFuncDecl :: CFuncDecl -> [QName]
typesOfCFuncDecl =
trCFuncDecl (\_ _ _ _ texp _ -> typesOfQualTypeExpr texp)
unionMap :: Eq b => (a -> [b]) -> [a] -> [b]
unionMap f = foldr union [] . (map (nub . f))
funcsOfCurryProg :: CurryProg -> [QName]
funcsOfCurryProg =
trCProg (\_ _ _ cls insts types funcs _ ->
unionMap funcsOfCClassDecl cls ++
unionMap funcsOfCInstanceDecl insts ++
unionMap funcsOfCTypeDecl types ++
unionMap funcsOfCFuncDecl funcs)
funcsOfCClassDecl :: CClassDecl -> [QName]
funcsOfCClassDecl =
trCClassDecl (\_ _ _ _ funcs -> unionMap funcsOfCFuncDecl funcs)
funcsOfCInstanceDecl :: CInstanceDecl -> [QName]
funcsOfCInstanceDecl =
trCInstanceDecl (\_ _ _ funcs -> unionMap funcsOfCFuncDecl funcs)
funcsOfCTypeDecl :: CTypeDecl -> [QName]
funcsOfCTypeDecl =
trCTypeDecl (\_ _ _ cdecls _ -> concatMap funcsOfConsDecl cdecls)
(\_ _ _ _ -> [])
(\_ _ _ cdecl _ -> funcsOfConsDecl cdecl)
funcsOfConsDecl :: CConsDecl -> [QName]
funcsOfConsDecl =
trCConsDecl (\_ _ qn _ _ -> [qn])
(\_ _ qn _ fddecls -> qn : concatMap funcsOfFieldDecl fddecls)
funcsOfFieldDecl :: CFieldDecl -> [QName]
funcsOfFieldDecl = trCFieldDecl (\qn _ _ -> [qn])
funcsOfCFuncDecl :: CFuncDecl -> [QName]
funcsOfCFuncDecl =
trCFuncDecl (\_ _ _ _ _ rules -> concatMap funcsOfCRule rules)
funcsOfCRule :: CRule -> [QName]
funcsOfCRule = trCRule (\_ rhs -> funcsOfCRhs rhs)
funcsOfCRhs :: CRhs -> [QName]
funcsOfCRhs =
trCRhs (\e ldecls -> funcsOfExpr e ++ concatMap funcsOfLDecl ldecls)
(\gs ldecls -> concatMap (\ (g,e) -> funcsOfExpr g ++ funcsOfExpr e) gs
++ concatMap funcsOfLDecl ldecls)
funcsOfLDecl :: CLocalDecl -> [QName]
funcsOfLDecl = trCLocalDecl funcsOfCFuncDecl (const funcsOfCRhs) (const [])
funcsOfExpr :: CExpr -> [QName]
funcsOfExpr =
trExpr (const [])
(const [])
(\n -> [n])
(++)
(const id)
(\ldecls e -> concatMap funcsOfLDecl ldecls ++ e)
(concatMap funcsOfStat)
(\e stats -> e ++ concatMap funcsOfStat stats)
(\_ e brs -> e ++ concatMap (funcsOfCRhs . snd) brs)
(\e _ -> e)
(\_ fields -> concatMap snd fields)
(\e fields -> e ++ concatMap snd fields)
funcsOfStat :: CStatement -> [QName]
funcsOfStat = trCStatement funcsOfExpr
(const funcsOfExpr)
(concatMap funcsOfLDecl)
|