| Index: test/dart_codegen/expect/collection/collections.dart
|
| diff --git a/test/dart_codegen/expect/collection/collections.dart b/test/dart_codegen/expect/collection/collections.dart
|
| index d40773082adea29c85194b8a75e864eaffc94ec2..1f7404ba8b02af06e315d162f8255a09308f9945 100644
|
| --- a/test/dart_codegen/expect/collection/collections.dart
|
| +++ b/test/dart_codegen/expect/collection/collections.dart
|
| @@ -1,8 +1,6 @@
|
| part of dart.collection;
|
| -
|
| -class UnmodifiableListView<E> extends UnmodifiableListBase<E> {
|
| - final Iterable<E> _source;
|
| - UnmodifiableListView(Iterable<E> source) : _source = source;
|
| - int get length => _source.length;
|
| - E operator [](int index) => _source.elementAt(index);
|
| + class UnmodifiableListView<E> extends UnmodifiableListBase<E> {final Iterable<E> _source;
|
| + UnmodifiableListView(Iterable<E> source) : _source = source;
|
| + int get length => _source.length;
|
| + E operator [](int index) => _source.elementAt(index);
|
| }
|
|
|