| Index: sdk/lib/core/list.dart
|
| diff --git a/sdk/lib/core/list.dart b/sdk/lib/core/list.dart
|
| index cdd002f5ea43e4fab34045da0d7015e07513871b..846d304194230b2a5c5afddc6b3c66afd8075cbe 100644
|
| --- a/sdk/lib/core/list.dart
|
| +++ b/sdk/lib/core/list.dart
|
| @@ -60,7 +60,7 @@ abstract class List<E> implements Collection<E> {
|
| *
|
| * The length of the returned list is not fixed.
|
| */
|
| - factory List.from(Iterable other, { bool growable: true }) {
|
| + factory List.from(Iterable other, { bool growable: false }) {
|
| List<E> list = new List<E>();
|
| for (E e in other) {
|
| list.add(e);
|
|
|