-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathversioning_A03_t02.dart
380 lines (332 loc) · 14.3 KB
/
versioning_A03_t02.dart
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
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion Any post-feature library declaration which has a platform library
/// class marked base or final as a superinterface must be marked base, final or
/// sealed, and cannot be implemented locally, even if the superinterface chain
/// goes through a pre-feature library declaration, and even if that declaration
/// ignores the base modifier.
///
/// @description Checks that it is a compile-time error if a declaration from a
/// post-feature library implements a platform library class marked `final` and
/// the superinterface chain goes through a pre-feature library declaration
/// @author [email protected]
/// @issue 52078
import "versioning_pre_feature_lib.dart";
class ClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
class ClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
class ClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base class BaseClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base class BaseClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base class BaseClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
interface class InterfaceClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
interface class InterfaceClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
interface class InterfaceClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
final class FinalClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
final class FinalClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
final class FinalClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
sealed class SealedClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
sealed class SealedClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
sealed class SealedClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract class AbstractClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract class AbstractClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract class AbstractClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract base class AbstractBaseClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract base class AbstractBaseClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract base class AbstractBaseClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract interface class AbstractInterfaceClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract interface class AbstractInterfaceClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract interface class AbstractInterfaceClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract final class AbstractFinalClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract final class AbstractFinalClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract final class AbstractFinalClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
mixin class MixinClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
mixin class MixinClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
mixin class MixinClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base mixin class BaseMixinClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base mixin class BaseMixinClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base mixin class BaseMixinClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract mixin class AbstractMixinClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract mixin class AbstractMixinClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract mixin class AbstractMixinClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract base mixin class AbstractBaseMixinClassImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract base mixin class AbstractBaseMixinClassImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
abstract base mixin class AbstractBaseMixinClassImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
mixin MixinImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
mixin MixinImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
mixin MixinImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base mixin BaseMixinImplementsPreFeatureExtendsFinal implements PreFeatureExtendsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base mixin BaseMixinImplementsPreFeatureImplementsFinal implements PreFeatureImplementsFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
base mixin BaseMixinImplementsPreFeatureWithFinal implements PreFeatureWithFinal {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
dynamic noSuchMethod(Invocation i) {}
}
main() {
print(ClassImplementsPreFeatureExtendsFinal);
print(ClassImplementsPreFeatureImplementsFinal);
print(ClassImplementsPreFeatureWithFinal);
print(BaseClassImplementsPreFeatureExtendsFinal);
print(BaseClassImplementsPreFeatureImplementsFinal);
print(BaseClassImplementsPreFeatureWithFinal);
print(InterfaceClassImplementsPreFeatureExtendsFinal);
print(InterfaceClassImplementsPreFeatureImplementsFinal);
print(InterfaceClassImplementsPreFeatureWithFinal);
print(FinalClassImplementsPreFeatureExtendsFinal);
print(FinalClassImplementsPreFeatureImplementsFinal);
print(FinalClassImplementsPreFeatureWithFinal);
print(SealedClassImplementsPreFeatureExtendsFinal);
print(SealedClassImplementsPreFeatureImplementsFinal);
print(SealedClassImplementsPreFeatureWithFinal);
print(AbstractClassImplementsPreFeatureExtendsFinal);
print(AbstractClassImplementsPreFeatureImplementsFinal);
print(AbstractClassImplementsPreFeatureWithFinal);
print(AbstractBaseClassImplementsPreFeatureExtendsFinal);
print(AbstractBaseClassImplementsPreFeatureImplementsFinal);
print(AbstractBaseClassImplementsPreFeatureWithFinal);
print(AbstractInterfaceClassImplementsPreFeatureExtendsFinal);
print(AbstractInterfaceClassImplementsPreFeatureImplementsFinal);
print(AbstractInterfaceClassImplementsPreFeatureWithFinal);
print(AbstractFinalClassImplementsPreFeatureExtendsFinal);
print(AbstractFinalClassImplementsPreFeatureImplementsFinal);
print(AbstractFinalClassImplementsPreFeatureWithFinal);
print(MixinClassImplementsPreFeatureExtendsFinal);
print(MixinClassImplementsPreFeatureImplementsFinal);
print(MixinClassImplementsPreFeatureWithFinal);
print(BaseMixinClassImplementsPreFeatureExtendsFinal);
print(BaseMixinClassImplementsPreFeatureImplementsFinal);
print(BaseMixinClassImplementsPreFeatureWithFinal);
print(AbstractMixinClassImplementsPreFeatureExtendsFinal);
print(AbstractMixinClassImplementsPreFeatureImplementsFinal);
print(AbstractMixinClassImplementsPreFeatureWithFinal);
print(AbstractBaseMixinClassImplementsPreFeatureExtendsFinal);
print(AbstractBaseMixinClassImplementsPreFeatureImplementsFinal);
print(AbstractBaseMixinClassImplementsPreFeatureWithFinal);
print(MixinImplementsPreFeatureExtendsFinal);
print(MixinImplementsPreFeatureImplementsFinal);
print(MixinImplementsPreFeatureWithFinal);
print(BaseMixinImplementsPreFeatureExtendsFinal);
print(BaseMixinImplementsPreFeatureImplementsFinal);
print(BaseMixinImplementsPreFeatureWithFinal);
}