| Index: sdk/lib/core/iterable.dart
|
| diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart
|
| index 300b2efcc4cf6a77b23136738fdb9ac988f96427..3e7c1cbd97a3327e64d05cff823dcfb37358c120 100644
|
| --- a/sdk/lib/core/iterable.dart
|
| +++ b/sdk/lib/core/iterable.dart
|
| @@ -336,8 +336,9 @@ abstract class Iterable<E> {
|
| * The elements are in iteration order.
|
| * The list is fixed-length if [growable] is false.
|
| */
|
| - List<E> toList({ bool growable: true }) =>
|
| - new List<E>.from(this, growable: growable);
|
| + List<E> toList({bool growable: true}) {
|
| + return new List<E>.from(this, growable: growable);
|
| + }
|
|
|
| /**
|
| * Creates a [Set] containing the same elements as this iterable.
|
|
|