| Index: test/generated_sdk/lib/core/list.dart
|
| diff --git a/test/generated_sdk/lib/core/list.dart b/test/generated_sdk/lib/core/list.dart
|
| index de16d5263936f446d315b974e0b5771837e2f3de..9168fbaef0990de4bf5ed9485fa9c1e40cd97ef4 100644
|
| --- a/test/generated_sdk/lib/core/list.dart
|
| +++ b/test/generated_sdk/lib/core/list.dart
|
| @@ -110,16 +110,12 @@ abstract class List<E> implements Iterable<E>, EfficientLength {
|
| * otherwise, it returns a fixed-length list.
|
| */
|
| factory List.from(Iterable elements, { bool growable: true }) {
|
| - // TODO(jmesserly): fix this. This is just to unblock initial SDK check in.
|
| - return null;
|
| - /*
|
| List<E> list = new List<E>();
|
| for (E e in elements) {
|
| list.add(e);
|
| }
|
| if (growable) return list;
|
| return makeListFixedLength(list);
|
| - */
|
| }
|
|
|
| /**
|
|
|