Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(828)

Unified Diff: sdk/lib/internal/iterable.dart

Issue 1024843002: Change ListIterator to only check for concurrent modification at each iteration (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Changelog. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/js_array.dart ('k') | tests/corelib/iterable_fold_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/internal/iterable.dart
diff --git a/sdk/lib/internal/iterable.dart b/sdk/lib/internal/iterable.dart
index 47c94f8b0be8975c60745e36a5f9440922feae5b..e783ea092acc7b88dfe2ff8bcc960a82e70d0ae9 100644
--- a/sdk/lib/internal/iterable.dart
+++ b/sdk/lib/internal/iterable.dart
@@ -320,27 +320,30 @@ class SubListIterable<E> extends ListIterable<E> {
*/
class ListIterator<E> implements Iterator<E> {
final Iterable<E> _iterable;
- final int _length;
+ final int _originalLength;
int _index;
E _current;
ListIterator(Iterable<E> iterable)
- : _iterable = iterable, _length = iterable.length, _index = 0;
+ : _iterable = iterable, _originalLength = iterable.length, _index = 0;
E get current => _current;
bool moveNext() {
- int length = _iterable.length;
- if (_length != length) {
- throw new ConcurrentModificationError(_iterable);
+ // Check for concurrent modifiction at each step in checked mode.
+ assert((_originalLength == _iterable.length) ||
+ (throw new ConcurrentModificationError(_iterable)));
+ if (_index < _iterable.length) {
+ _current = _iterable.elementAt(_index);
+ _index++;
+ return true;
}
- if (_index >= length) {
- _current = null;
- return false;
+ // Check for concurrent modification only at the end in production mode.
+ if (_originalLength != _iterable.length) {
+ throw new ConcurrentModificationError(_iterable);
}
- _current = _iterable.elementAt(_index);
- _index++;
- return true;
+ _current = null;
+ return false;
}
}
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/js_array.dart ('k') | tests/corelib/iterable_fold_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698