Index: sdk/lib/_internal/compiler/implementation/deferred_load.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/deferred_load.dart b/sdk/lib/_internal/compiler/implementation/deferred_load.dart |
index ec9edd1722fd299f853d3276381ad37f6f02ebbb..ae262b7764f8f59e467b5ca0755d744d3678155e 100644 |
--- a/sdk/lib/_internal/compiler/implementation/deferred_load.dart |
+++ b/sdk/lib/_internal/compiler/implementation/deferred_load.dart |
@@ -296,7 +296,7 @@ class DeferredLoadTask extends CompilerTask { |
// to. Static members are not relevant, unless we are processing |
// extra dependencies due to mirrors. |
void addLiveInstanceMember(Element element) { |
- if (!compiler.enqueuer.resolution.isLive(element)) return; |
+ if (!compiler.enqueuer.resolution.hasBeenResolved(element)) return; |
if (!isMirrorUsage && !element.isInstanceMember) return; |
collectDependencies(element.implementation); |
} |