| Index: lib/runtime/dart/collection.js
|
| diff --git a/lib/runtime/dart/collection.js b/lib/runtime/dart/collection.js
|
| index 7f7cf83c84aec82dbce4f3faa16527cdb8365f98..a4e55a83d465a5ddaabe3e79fa3d681a4f684fce 100644
|
| --- a/lib/runtime/dart/collection.js
|
| +++ b/lib/runtime/dart/collection.js
|
| @@ -119,7 +119,7 @@ var collection;
|
| if (test(element))
|
| toRemove.add(element);
|
| }
|
| - this.removeAll(dart.as(toRemove, core.Iterable$(core.Object)));
|
| + this.removeAll(toRemove);
|
| }
|
| retainWhere(test) {
|
| let toRemove = new List.from([]);
|
| @@ -127,7 +127,7 @@ var collection;
|
| if (!dart.notNull(test(element)))
|
| toRemove.add(element);
|
| }
|
| - this.removeAll(dart.as(toRemove, core.Iterable$(core.Object)));
|
| + this.removeAll(toRemove);
|
| }
|
| containsAll(other) {
|
| for (let o of other) {
|
|
|