File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
pkg/nnbd_migration/lib/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -426,15 +426,15 @@ class MigrationResolutionHooksImpl
426
426
node,
427
427
() => node.elements,
428
428
() => _collectionElements[node] ?? =
429
- _transformCollectionElements (node.elements, node.typeArguments ));
429
+ _transformCollectionElements (node.elements));
430
430
431
431
@override
432
432
List <CollectionElement > getSetOrMapElements (SetOrMapLiteral node) =>
433
433
_wrapExceptions (
434
434
node,
435
435
() => node.elements,
436
436
() => _collectionElements[node] ?? =
437
- _transformCollectionElements (node.elements, node.typeArguments ));
437
+ _transformCollectionElements (node.elements));
438
438
439
439
@override
440
440
DartType getTypeParameterBound (TypeParameterElementImpl element) {
@@ -808,7 +808,7 @@ class MigrationResolutionHooksImpl
808
808
}
809
809
810
810
List <CollectionElement > _transformCollectionElements (
811
- NodeList <CollectionElement > elements, TypeArgumentList typeArguments ) {
811
+ NodeList <CollectionElement > elements) {
812
812
return elements
813
813
.map (_transformCollectionElement)
814
814
.where ((e) => e != null )
You can’t perform that action at this time.
0 commit comments