-
Notifications
You must be signed in to change notification settings - Fork 0
/
ghc-plugs-out.cabal
305 lines (272 loc) · 6.76 KB
/
ghc-plugs-out.cabal
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
cabal-version: 3.0
name: ghc-plugs-out
version: 2.0.0.0
synopsis: Type checker plugins without the type checking.
description:
A __plugs-out__ spacecraft has no cables or umbilicals connected. The plugins
in this package are __plugs-out__ in the sense that they do no type checking.
The test suites in this package show how type checker plugins interact with GHC
depending on:
* their purity
* how they're wired up
* what options they see
* whether GHC needs help type checking
category: Compiler Plugin
author: Phil de Joux
maintainer: [email protected]
copyright: © 2020-2022 Phil de Joux, © 2020-2022 Block Scope Limited
homepage: https://github.com/blockscope/ghc-plugs-out
license: MPL-2.0
license-file: LICENSE.md
tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.2
build-type: Simple
extra-source-files:
changelog.md, README.rst
source-repository head
type: git
location: https://github.com/blockscope/ghc-plugs-out
common opts
ghc-options:
-Wall
-Wincomplete-uni-patterns
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
default-language: Haskell2010
library no-op-plugin
import: opts
exposed-modules:
NoOp.Plugin
hs-source-dirs:
plugins/noop
build-depends:
base >= 4.10 && < 5
, ghc
, ghc-corroborate
library undefined-init-plugin
import: opts
exposed-modules:
Undefined.Init.Plugin
hs-source-dirs:
plugins/init
build-depends:
base >= 4.10 && < 5
, ghc
, ghc-corroborate
, no-op-plugin
library undefined-solve-plugin
import: opts
exposed-modules:
Undefined.Solve.Plugin
hs-source-dirs:
plugins/solve
build-depends:
base >= 4.10 && < 5
, ghc
, ghc-corroborate
, no-op-plugin
library undefined-stop-plugin
import: opts
exposed-modules:
Undefined.Stop.Plugin
hs-source-dirs:
plugins/stop
build-depends:
base >= 4.10 && < 5
, ghc
, ghc-corroborate
, no-op-plugin
library call-count-plugin
import: opts
exposed-modules:
CallCount.TcPlugin
CallCount.Pure.Plugin
CallCount.Pure.Plugin1
CallCount.Pure.Plugin2
CallCount.Impure.Plugin
hs-source-dirs:
plugins/call-count
build-depends:
base >= 4.10 && < 5
, ghc
, ghc-corroborate
, th-printf
, no-op-plugin
test-suite test-undefined-init
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/undef-init
build-depends:
base >= 4.10 && < 5
, undefined-init-plugin
test-suite test-undefined-init-carefree
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/undef-init-carefree
build-depends:
base >= 4.10 && < 5
, undefined-init-plugin
test-suite test-undefined-solve
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/undef-solve
build-depends:
base >= 4.10 && < 5
, undefined-solve-plugin
test-suite test-undefined-solve-carefree
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/undef-solve-carefree
build-depends:
base >= 4.10 && < 5
, undefined-solve-plugin
test-suite test-undefined-stop
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/undef-stop
build-depends:
base >= 4.10 && < 5
, undefined-stop-plugin
test-suite test-undefined-stop-carefree
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/undef-stop-carefree
build-depends:
base >= 4.10 && < 5
, undefined-stop-plugin
test-suite test-wireup-pure-by-option
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/wireup-pure-by-option
ghc-options: -Wall -fplugin CallCount.Pure.Plugin
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-wireup-pure-by-pragma
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/wireup-pure-by-pragma
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-wireup-pure-by-both
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/wireup-pure-by-pragma
ghc-options: -Wall -fplugin CallCount.Pure.Plugin
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-wireup-impure-by-option
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/wireup-impure-by-option
ghc-options: -Wall -fplugin CallCount.Impure.Plugin
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-wireup-impure-by-pragma
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/wireup-impure-by-pragma
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-wireup-impure-by-both
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/wireup-impure-by-pragma
ghc-options: -Wall -fplugin CallCount.Impure.Plugin
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-counter-main
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/counter-main
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-in-turn
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/counter-in-turn
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-in-line
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/counter-in-line
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-in-turn-each
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/counter-in-turn-each
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-in-line-each
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test-suites/counter-in-line-each
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-counter-foo-bar-main
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Foo Bar
hs-source-dirs:
test-suites/counter-foo-bar-main
build-depends:
base >= 4.10 && < 5
, call-count-plugin
test-suite test-counter-foobar-main
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: FooBar
hs-source-dirs:
test-suites/counter-foobar-main
build-depends:
base >= 4.10 && < 5
, call-count-plugin