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() {
825825 ''' ),
826826 _containsAllOf (
827827 'int get m => (super.noSuchMethod(' ,
828- 'set m(int? _m ) => super.noSuchMethod(' ,
828+ 'set m(int? value ) => super.noSuchMethod(' ,
829829 ),
830830 );
831831 });
@@ -2391,10 +2391,10 @@ void main() {
23912391 ) as int);
23922392 ''' ),
23932393 dedent2 ('''
2394- set m(int? _m ) => super.noSuchMethod(
2394+ set m(int? value ) => super.noSuchMethod(
23952395 Invocation.setter(
23962396 #m,
2397- _m ,
2397+ value ,
23982398 ),
23992399 returnValueForMissingStub: null,
24002400 );
@@ -2419,10 +2419,10 @@ void main() {
24192419 ) as int);
24202420 ''' ),
24212421 dedent2 ('''
2422- set m(int? _m ) => super.noSuchMethod(
2422+ set m(int? value ) => super.noSuchMethod(
24232423 Invocation.setter(
24242424 #m,
2425- _m ,
2425+ value ,
24262426 ),
24272427 returnValueForMissingStub: null,
24282428 );
You can’t perform that action at this time.
0 commit comments