| Index: pkg/compiler/lib/src/resolution/registry.dart
|
| diff --git a/pkg/compiler/lib/src/resolution/registry.dart b/pkg/compiler/lib/src/resolution/registry.dart
|
| index 625f8f0056703d1bdcf582a560920bd16a3b6beb..4d7577cdb01c19f8e720265ae3170cc1c4bba65a 100644
|
| --- a/pkg/compiler/lib/src/resolution/registry.dart
|
| +++ b/pkg/compiler/lib/src/resolution/registry.dart
|
| @@ -90,6 +90,8 @@ class EagerRegistry implements Registry {
|
| registerDependency(element);
|
| world.registerStaticUse(element);
|
| }
|
| +
|
| + String toString() => 'EagerRegistry for ${mapping.analyzedElement}';
|
| }
|
|
|
| class ResolutionWorldImpact implements WorldImpact {
|
| @@ -218,6 +220,8 @@ class ResolutionRegistry implements Registry {
|
|
|
| Backend get backend => compiler.backend;
|
|
|
| + String toString() => 'ResolutionRegistry for ${mapping.analyzedElement}';
|
| +
|
| //////////////////////////////////////////////////////////////////////////////
|
| // Node-to-Element mapping functionality.
|
| //////////////////////////////////////////////////////////////////////////////
|
|
|