@@ -132,7 +132,7 @@ class BindPatternVariableFragmentImpl extends PatternVariableFragmentImpl
132
132
@elementClass
133
133
class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
134
134
@override
135
- @trackedIncludedIntoId
135
+ @trackedIncludedInId
136
136
final Reference reference;
137
137
138
138
final ClassFragmentImpl _firstFragment;
@@ -204,14 +204,14 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
204
204
}
205
205
206
206
@override
207
- @trackedDirectlyDisable
207
+ @trackedDirectlyOpaque
208
208
ClassFragmentImpl get firstFragment {
209
209
globalResultRequirements? .recordOpaqueApiUse (this , 'firstFragment' );
210
210
return _firstFragment;
211
211
}
212
212
213
213
@override
214
- @trackedDirectlyDisable
214
+ @trackedDirectlyOpaque
215
215
List <ClassFragmentImpl > get fragments {
216
216
globalResultRequirements? .recordOpaqueApiUse (this , 'fragments' );
217
217
return [
@@ -266,7 +266,7 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
266
266
}
267
267
268
268
@override
269
- @trackedIncludedIntoId
269
+ @trackedIncludedInId
270
270
bool get isAbstract {
271
271
return hasModifier (Modifier .ABSTRACT );
272
272
}
@@ -276,7 +276,7 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
276
276
}
277
277
278
278
@override
279
- @trackedIncludedIntoId
279
+ @trackedIncludedInId
280
280
bool get isBase {
281
281
return hasModifier (Modifier .BASE );
282
282
}
@@ -286,11 +286,11 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
286
286
}
287
287
288
288
@override
289
- @trackedIncludedIntoId
289
+ @trackedIncludedInId
290
290
bool get isConstructable => firstFragment.isConstructable;
291
291
292
292
@override
293
- @trackedIncludedIntoId
293
+ @trackedIncludedInId
294
294
bool get isDartCoreEnum {
295
295
return name == 'Enum' && library.isDartCore;
296
296
}
@@ -302,12 +302,12 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
302
302
}
303
303
304
304
@override
305
- @trackedIncludedIntoId
305
+ @trackedIncludedInId
306
306
bool get isDartCoreObject {
307
307
return name == 'Object' && library.isDartCore;
308
308
}
309
309
310
- @trackedIncludedIntoId
310
+ @trackedIncludedInId
311
311
bool get isDartCoreRecord {
312
312
return name == 'Record' && library.isDartCore;
313
313
}
@@ -350,14 +350,14 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
350
350
}
351
351
352
352
@override
353
- @trackedIncludedIntoId
353
+ @trackedIncludedInId
354
354
bool get isExhaustive => firstFragment.isExhaustive;
355
355
356
356
@override
357
357
bool get isExtendableOutside => ! isInterface && ! isFinal && ! isSealed;
358
358
359
359
@override
360
- @trackedIncludedIntoId
360
+ @trackedIncludedInId
361
361
bool get isFinal {
362
362
return hasModifier (Modifier .FINAL );
363
363
}
@@ -370,7 +370,7 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
370
370
bool get isImplementableOutside => ! isBase && ! isFinal && ! isSealed;
371
371
372
372
@override
373
- @trackedIncludedIntoId
373
+ @trackedIncludedInId
374
374
bool get isInterface {
375
375
return hasModifier (Modifier .INTERFACE );
376
376
}
@@ -388,15 +388,15 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
388
388
}
389
389
390
390
@override
391
- @trackedIncludedIntoId
391
+ @trackedIncludedInId
392
392
bool get isMixinApplication {
393
393
return globalResultRequirements.includedInId (() {
394
394
return firstFragment.isMixinApplication;
395
395
});
396
396
}
397
397
398
398
@override
399
- @trackedIncludedIntoId
399
+ @trackedIncludedInId
400
400
bool get isMixinClass {
401
401
return hasModifier (Modifier .MIXIN_CLASS );
402
402
}
@@ -406,7 +406,7 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
406
406
}
407
407
408
408
@override
409
- @trackedIncludedIntoId
409
+ @trackedIncludedInId
410
410
bool get isSealed {
411
411
return hasModifier (Modifier .SEALED );
412
412
}
@@ -416,22 +416,22 @@ class ClassElementImpl extends InterfaceElementImpl implements ClassElement {
416
416
}
417
417
418
418
@override
419
- @trackedIncludedIntoId
419
+ @trackedIncludedInId
420
420
bool get isValidMixin => firstFragment.isValidMixin;
421
421
422
422
@override
423
423
ElementKind get kind => ElementKind .CLASS ;
424
424
425
425
@override
426
- @trackedDirectlyDisable
426
+ @trackedDirectlyOpaque
427
427
T ? accept <T >(ElementVisitor2 <T > visitor) {
428
428
globalResultRequirements? .recordOpaqueApiUse (this , 'accept2' );
429
429
return visitor.visitClassElement (this );
430
430
}
431
431
432
432
@Deprecated ('Use accept instead' )
433
433
@override
434
- @trackedDirectlyDisable
434
+ @trackedDirectlyOpaque
435
435
T ? accept2 <T >(ElementVisitor2 <T > visitor) {
436
436
return accept (visitor);
437
437
}
@@ -1790,7 +1790,7 @@ abstract class ElementImpl implements Element {
1790
1790
bool get isPublic => ! isPrivate;
1791
1791
1792
1792
@override
1793
- @trackedIncludedIntoId
1793
+ @trackedIncludedInId
1794
1794
LibraryElementImpl ? get library {
1795
1795
return globalResultRequirements.includedInId (() {
1796
1796
return firstFragment.libraryFragment? .element as LibraryElementImpl ? ;
@@ -4033,7 +4033,7 @@ abstract class InstanceElementImpl extends ElementImpl
4033
4033
}
4034
4034
4035
4035
@override
4036
- @trackedIncludedIntoId
4036
+ @trackedIncludedInId
4037
4037
String get displayName {
4038
4038
return globalResultRequirements.includedInId (() {
4039
4039
return firstFragment.displayName;
@@ -4090,15 +4090,15 @@ abstract class InstanceElementImpl extends ElementImpl
4090
4090
bool get isPublic => firstFragment.isPublic;
4091
4091
4092
4092
@override
4093
- @trackedIncludedIntoId
4093
+ @trackedIncludedInId
4094
4094
bool get isSimplyBounded {
4095
4095
return globalResultRequirements.includedInId (() {
4096
4096
return firstFragment.isSimplyBounded;
4097
4097
});
4098
4098
}
4099
4099
4100
4100
@override
4101
- @trackedIncludedIntoId
4101
+ @trackedIncludedInId
4102
4102
bool get isSynthetic {
4103
4103
return globalResultRequirements.includedInId (() {
4104
4104
return firstFragment.isSynthetic;
@@ -4113,7 +4113,7 @@ abstract class InstanceElementImpl extends ElementImpl
4113
4113
LibraryElementImpl get library2 => library;
4114
4114
4115
4115
@override
4116
- @trackedIncludedIntoId
4116
+ @trackedIncludedInId
4117
4117
MetadataImpl get metadata {
4118
4118
return globalResultRequirements.includedInId (() {
4119
4119
return firstFragment.metadata;
@@ -4141,7 +4141,7 @@ abstract class InstanceElementImpl extends ElementImpl
4141
4141
List <MethodElementImpl > get methods2 => methods;
4142
4142
4143
4143
@override
4144
- @trackedIncludedIntoId
4144
+ @trackedIncludedInId
4145
4145
String ? get name {
4146
4146
return globalResultRequirements.includedInId (() {
4147
4147
return firstFragment.name;
@@ -4174,7 +4174,7 @@ abstract class InstanceElementImpl extends ElementImpl
4174
4174
List <SetterElementImpl > get setters2 => setters;
4175
4175
4176
4176
@override
4177
- @trackedIncludedIntoId
4177
+ @trackedIncludedInId
4178
4178
List <TypeParameterElementImpl > get typeParameters {
4179
4179
return globalResultRequirements.includedInId (() {
4180
4180
return firstFragment.typeParameters
@@ -4723,7 +4723,7 @@ abstract class InterfaceElementImpl extends InstanceElementImpl
4723
4723
.map;
4724
4724
4725
4725
@override
4726
- @trackedIncludedIntoId
4726
+ @trackedIncludedInId
4727
4727
List <InterfaceTypeImpl > get interfaces {
4728
4728
return globalResultRequirements.includedInId (() {
4729
4729
return firstFragment.interfaces;
@@ -4743,15 +4743,15 @@ abstract class InterfaceElementImpl extends InstanceElementImpl
4743
4743
}
4744
4744
4745
4745
@override
4746
- @trackedIncludedIntoId
4746
+ @trackedIncludedInId
4747
4747
List <InterfaceTypeImpl > get mixins {
4748
4748
return globalResultRequirements.includedInId (() {
4749
4749
return firstFragment.mixins;
4750
4750
});
4751
4751
}
4752
4752
4753
4753
@override
4754
- @trackedIncludedIntoId
4754
+ @trackedIncludedInId
4755
4755
InterfaceTypeImpl ? get supertype {
4756
4756
return globalResultRequirements.includedInId (() {
4757
4757
return firstFragment.supertype;
0 commit comments