File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -825,7 +825,7 @@ void main() {
825
825
''' ),
826
826
_containsAllOf (
827
827
'int get m => (super.noSuchMethod(' ,
828
- 'set m(int? _m ) => super.noSuchMethod(' ,
828
+ 'set m(int? value ) => super.noSuchMethod(' ,
829
829
),
830
830
);
831
831
});
@@ -2391,10 +2391,10 @@ void main() {
2391
2391
) as int);
2392
2392
''' ),
2393
2393
dedent2 ('''
2394
- set m(int? _m ) => super.noSuchMethod(
2394
+ set m(int? value ) => super.noSuchMethod(
2395
2395
Invocation.setter(
2396
2396
#m,
2397
- _m ,
2397
+ value ,
2398
2398
),
2399
2399
returnValueForMissingStub: null,
2400
2400
);
@@ -2419,10 +2419,10 @@ void main() {
2419
2419
) as int);
2420
2420
''' ),
2421
2421
dedent2 ('''
2422
- set m(int? _m ) => super.noSuchMethod(
2422
+ set m(int? value ) => super.noSuchMethod(
2423
2423
Invocation.setter(
2424
2424
#m,
2425
- _m ,
2425
+ value ,
2426
2426
),
2427
2427
returnValueForMissingStub: null,
2428
2428
);
You can’t perform that action at this time.
0 commit comments