| Index: sdk/lib/_internal/compiler/js_lib/core_patch.dart
|
| diff --git a/sdk/lib/_internal/compiler/js_lib/core_patch.dart b/sdk/lib/_internal/compiler/js_lib/core_patch.dart
|
| index c0180d8322342b025b898e259fe3fcfa0c2307cb..29ee7787287406b79905d8f436547aa66d6ec302 100644
|
| --- a/sdk/lib/_internal/compiler/js_lib/core_patch.dart
|
| +++ b/sdk/lib/_internal/compiler/js_lib/core_patch.dart
|
| @@ -259,9 +259,9 @@ class List<E> {
|
| }
|
|
|
| @patch
|
| - factory List.from(Iterable other, { bool growable: true }) {
|
| + factory List.from(Iterable elements, { bool growable: true }) {
|
| List<E> list = new List<E>();
|
| - for (E e in other) {
|
| + for (E e in elements) {
|
| list.add(e);
|
| }
|
| if (growable) return list;
|
|
|