@@ -6266,15 +6266,7 @@ MacroClassNotDeclaredMacro:
62666266UnmatchedAugmentationClassMember :
62676267 problemMessage : " Augmentation member '#name' doesn't match a member in the augmented class."
62686268 correctionMessage : " Try changing the name to an existing member or removing the 'augment' modifier."
6269- experiments : macros
6270- script :
6271- main.dart :
6272- import augment 'lib.dart';
6273- class Class {}
6274- lib.dart :
6275- augment class Class {
6276- augment void method() {}
6277- }
6269+ experiments : augmentations
62786270
62796271UnmatchedPatchClassMember :
62806272 problemMessage : " Patch member '#name' doesn't match a member in the origin class."
@@ -6283,12 +6275,7 @@ UnmatchedPatchClassMember:
62836275UnmatchedAugmentationLibraryMember :
62846276 problemMessage : " Augmentation member '#name' doesn't match a member in the augmented library."
62856277 correctionMessage : " Try changing the name to an existing member or removing the 'augment' modifier."
6286- experiments : macros
6287- script :
6288- main.dart :
6289- import augment 'lib.dart';
6290- lib.dart :
6291- augment void method() {}
6278+ experiments : augmentations
62926279
62936280UnmatchedPatchLibraryMember :
62946281 problemMessage : " Patch member '#name' doesn't match a member in the origin library."
@@ -6297,12 +6284,7 @@ UnmatchedPatchLibraryMember:
62976284UnmatchedAugmentationClass :
62986285 problemMessage : " Augmentation class '#name' doesn't match a class in the augmented library."
62996286 correctionMessage : " Try changing the name to an existing class or removing the 'augment' modifier."
6300- experiments : macros
6301- script :
6302- main.dart :
6303- import augment 'lib.dart';
6304- lib.dart :
6305- augment class Class {}
6287+ experiments : augmentations
63066288
63076289UnmatchedPatchClass :
63086290 problemMessage : " Patch class '#name' doesn't match a class in the origin library."
@@ -6320,17 +6302,7 @@ UnmatchedPatchDeclaration:
63206302UnmatchedAugmentationConstructor :
63216303 problemMessage : " Augmentation constructor '#name' doesn't match a constructor in the augmented class."
63226304 correctionMessage : " Try changing the name to an existing constructor or removing the 'augment' modifier."
6323- experiments : macros
6324- script :
6325- main.dart :
6326- import augment 'lib.dart';
6327- class Class {
6328- Class.name1();
6329- }
6330- lib.dart :
6331- augment class Class {
6332- augment Class.name2();
6333- }
6305+ experiments : augmentations
63346306
63356307UnmatchedPatchConstructor :
63366308 problemMessage : " Patch constructor '#name' doesn't match a constructor in the origin class."
@@ -6339,17 +6311,7 @@ UnmatchedPatchConstructor:
63396311NonAugmentationClassMemberConflict :
63406312 problemMessage : " Member '#name' conflicts with an existing member of the same name in the augmented class."
63416313 correctionMessage : " Try changing the name of the member or adding an 'augment' modifier."
6342- experiments : macros
6343- script :
6344- main.dart :
6345- import augment 'lib.dart';
6346- class Class {
6347- void method() {}
6348- }
6349- lib.dart :
6350- augment class Class {
6351- void method() {}
6352- }
6314+ experiments : augmentations
63536315
63546316NonPatchClassMemberConflict :
63556317 problemMessage : " Member '#name' conflicts with an existing member of the same name in the origin class."
@@ -6358,13 +6320,7 @@ NonPatchClassMemberConflict:
63586320NonAugmentationLibraryMemberConflict :
63596321 problemMessage : " Member '#name' conflicts with an existing member of the same name in the augmented library."
63606322 correctionMessage : " Try changing the name of the member or adding an 'augment' modifier."
6361- experiments : macros
6362- script :
6363- main.dart :
6364- import augment 'lib.dart';
6365- void method() {}
6366- lib.dart :
6367- void method() {}
6323+ experiments : augmentations
63686324
63696325NonPatchLibraryMemberConflict :
63706326 problemMessage : " Member '#name' conflicts with an existing member of the same name in the origin library."
@@ -6373,13 +6329,7 @@ NonPatchLibraryMemberConflict:
63736329NonAugmentationLibraryConflict :
63746330 problemMessage : " Declaration '#name' conflicts with an existing declaration of the same name in the augmented library."
63756331 correctionMessage : " Try changing the name of the declaration."
6376- experiments : macros
6377- script :
6378- main.dart :
6379- import augment 'lib.dart';
6380- void method() {}
6381- lib.dart :
6382- class method {}
6332+ experiments : augmentations
63836333
63846334NonPatchLibraryConflict :
63856335 problemMessage : " Declaration '#name' conflicts with an existing declaration of the same name in the origin library."
@@ -6388,13 +6338,7 @@ NonPatchLibraryConflict:
63886338NonAugmentationClassConflict :
63896339 problemMessage : " Class '#name' conflicts with an existing class of the same name in the augmented library."
63906340 correctionMessage : " Try changing the name of the class or adding an 'augment' modifier."
6391- experiments : macros
6392- script :
6393- main.dart :
6394- import augment 'lib.dart';
6395- class Class {}
6396- lib.dart :
6397- class Class {}
6341+ experiments : augmentations
63986342
63996343NonPatchClassConflict :
64006344 problemMessage : " Class '#name' conflicts with an existing class of the same name in the origin library."
@@ -6403,17 +6347,7 @@ NonPatchClassConflict:
64036347NonAugmentationConstructorConflict :
64046348 problemMessage : " Constructor '#name' conflicts with an existing constructor of the same name in the augmented class."
64056349 correctionMessage : " Try changing the name of the constructor or adding an 'augment' modifier."
6406- experiments : macros
6407- script :
6408- main.dart :
6409- import augment 'lib.dart';
6410- class Class {
6411- Class.name();
6412- }
6413- lib.dart :
6414- augment class Class {
6415- Class.name();
6416- }
6350+ experiments : augmentations
64176351
64186352NonPatchConstructorConflict :
64196353 problemMessage : " Constructor '#name' conflicts with an existing constructor of the same name in the origin class."
@@ -6507,39 +6441,15 @@ MixinApplicationNoConcreteMemberContext:
65076441
65086442NoAugmentSuperReadTarget :
65096443 problemMessage : " Cannot read from 'augment super'."
6510- experiments : macros
6511- script :
6512- main.dart :
6513- import augment 'lib.dart';
6514- void set setter(value) {}
6515- lib.dart :
6516- augment void set setter(value) {
6517- augment super;
6518- }
6444+ experiments : augmentations
65196445
65206446NoAugmentSuperWriteTarget :
65216447 problemMessage : " Cannot write to 'augment super'."
6522- experiments : macros
6523- script :
6524- main.dart :
6525- import augment 'lib.dart';
6526- void method() {}
6527- lib.dart :
6528- augment void method() {
6529- augment super = 42;
6530- }
6448+ experiments : augmentations
65316449
65326450NoAugmentSuperInvokeTarget :
65336451 problemMessage : " Cannot call 'augment super'."
6534- experiments : macros
6535- script :
6536- main.dart :
6537- import augment 'lib.dart';
6538- void set setter(value) {}
6539- lib.dart :
6540- augment void set setter(value) {
6541- augment super();
6542- }
6452+ experiments : augmentations
65436453
65446454IndexOutOfBoundInRecordIndexGet :
65456455 problemMessage : " Index #count is out of range 0..#count2 of positional fields of records #type."
0 commit comments