| Index: lib/unittest/collection_matchers.dart
|
| ===================================================================
|
| --- lib/unittest/collection_matchers.dart (revision 8355)
|
| +++ lib/unittest/collection_matchers.dart (working copy)
|
| @@ -107,6 +107,9 @@
|
| return 'has too many elements (${actualLength} > ${expectedLength})';
|
| }
|
| List<bool> matched = new List<bool>(actualLength);
|
| + for (var i = 0; i < actualLength; i++) {
|
| + matched[i] = false;
|
| + }
|
| var expectedPosition = 0;
|
| for (var expectedElement in _expected) {
|
| var actualPosition = 0;
|
|
|