| Index: pkg/compiler/lib/src/dump_info.dart
|
| diff --git a/pkg/compiler/lib/src/dump_info.dart b/pkg/compiler/lib/src/dump_info.dart
|
| index 2b096a4f4955e25a2f8a03599a319440692ba1f8..9aa3e0823845c9b0a4dc140beea8a9eb1c583008 100644
|
| --- a/pkg/compiler/lib/src/dump_info.dart
|
| +++ b/pkg/compiler/lib/src/dump_info.dart
|
| @@ -367,7 +367,7 @@ class DumpInfoTask extends CompilerTask {
|
| }
|
| }
|
|
|
| - final Map<Element, List<Element>> _dependencies = {};
|
| + final Map<Element, Set<Element>> _dependencies = {};
|
| void registerDependency(Element source, Element target) {
|
| _dependencies.putIfAbsent(source, () => new Set()).add(target);
|
| }
|
|
|