Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 class _GrowableObjectArray<T> implements List<T> { | 5 class _GrowableObjectArray<T> implements List<T> { |
| 6 factory _GrowableObjectArray._uninstantiable() { | 6 factory _GrowableObjectArray._uninstantiable() { |
| 7 throw new UnsupportedError( | 7 throw new UnsupportedError( |
| 8 "GrowableObjectArray can only be allocated by the VM"); | 8 "GrowableObjectArray can only be allocated by the VM"); |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 208 } | 208 } |
| 209 | 209 |
| 210 void sort([Comparator<T> compare = Comparable.compare]) { | 210 void sort([Comparator<T> compare = Comparable.compare]) { |
| 211 _Sort.sort(this, compare); | 211 _Sort.sort(this, compare); |
| 212 } | 212 } |
| 213 | 213 |
| 214 String toString() { | 214 String toString() { |
| 215 return Collections.collectionToString(this); | 215 return Collections.collectionToString(this); |
| 216 } | 216 } |
| 217 | 217 |
| 218 Iterator<T> iterator() { | 218 Iterator<T> get iterator => new SequenceIterator<T>(this); |
|
Ivan Posva
2012/11/26 18:20:13
ditto
floitsch
2012/11/28 13:44:34
Done.
| |
| 219 return new SequenceIterator<T>(this); | |
| 220 } | |
| 221 } | 219 } |
| OLD | NEW |