| 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 20 matching lines...) Expand all Loading... |
| 31 } | 31 } |
| 32 | 32 |
| 33 void removeAll(Iterable elements) { | 33 void removeAll(Iterable elements) { |
| 34 IterableMixinWorkaround.removeAllList(this, elements); | 34 IterableMixinWorkaround.removeAllList(this, elements); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void retainAll(Iterable elements) { | 37 void retainAll(Iterable elements) { |
| 38 IterableMixinWorkaround.retainAll(this, elements); | 38 IterableMixinWorkaround.retainAll(this, elements); |
| 39 } | 39 } |
| 40 | 40 |
| 41 void removeMatching(bool test(T element)) { | 41 void removeMatching(bool test(E element)) { |
| 42 IterableMixinWorkaround.removeMatchingList(this, test); | 42 IterableMixinWorkaround.removeMatchingList(this, test); |
| 43 } | 43 } |
| 44 | 44 |
| 45 void retainMatching(bool test(T element)) { | 45 void retainMatching(bool test(T element)) { |
| 46 IterableMixinWorkaround.removeMatchingList(this, | 46 IterableMixinWorkaround.removeMatchingList(this, |
| 47 (T element) => !test(element)); | 47 (T element) => !test(element)); |
| 48 } | 48 } |
| 49 | 49 |
| 50 void setRange(int start, int length, List<T> from, [int startFrom = 0]) { | 50 void setRange(int start, int length, List<T> from, [int startFrom = 0]) { |
| 51 if (length < 0) { | 51 if (length < 0) { |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 } | 321 } |
| 322 | 322 |
| 323 List<T> toList() { | 323 List<T> toList() { |
| 324 return new List<T>.from(this); | 324 return new List<T>.from(this); |
| 325 } | 325 } |
| 326 | 326 |
| 327 Set<T> toSet() { | 327 Set<T> toSet() { |
| 328 return new Set<T>.from(this); | 328 return new Set<T>.from(this); |
| 329 } | 329 } |
| 330 } | 330 } |
| OLD | NEW |