| Index: pkg/compiler/lib/src/helpers/debug_collection.dart
|
| diff --git a/pkg/compiler/lib/src/helpers/debug_collection.dart b/pkg/compiler/lib/src/helpers/debug_collection.dart
|
| index 42e28c044c5b6b5700f5ac9265e3a3f533069b3b..8ff4be2277a44a8e4122d9140cc71206cf016897 100644
|
| --- a/pkg/compiler/lib/src/helpers/debug_collection.dart
|
| +++ b/pkg/compiler/lib/src/helpers/debug_collection.dart
|
| @@ -233,7 +233,9 @@ class DebugSet<E> extends DebugIterable<E> implements Set<E> {
|
| return set.add(value);
|
| }
|
|
|
| - void addAll(Iterable<E> elements) => set.addAll(elements);
|
| + void addAll(Iterable<E> elements) {
|
| + elements.forEach(add);
|
| + }
|
|
|
| bool remove(Object value) => set.remove(value);
|
|
|
|
|