Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: pkg/compiler/lib/src/world.dart

Issue 2693163002: Split backend implementation of EnqueuerListener (Closed)
Patch Set: Update comments. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/world.dart
diff --git a/pkg/compiler/lib/src/world.dart b/pkg/compiler/lib/src/world.dart
index 6e774c4e023d9ceeb3de45e246fe5f5b7fe7c9a7..505afab5c7a2e5e5e536cc1d4d058938a0e8fe3c 100644
--- a/pkg/compiler/lib/src/world.dart
+++ b/pkg/compiler/lib/src/world.dart
@@ -1073,7 +1073,7 @@ class ClosedWorldImpl implements ClosedWorld, ClosedWorldRefiner {
assert(isClosed);
bool canReachAll = true;
if (mask != null) {
- canReachAll = _backend.hasInvokeOnSupport &&
+ canReachAll = _backend.backendUsage.hasInvokeOnSupport &&
mask.needsNoSuchMethodHandling(selector, this);
}
return canReachAll ? commonMasks.dynamicType : mask;

Powered by Google App Engine
This is Rietveld 408576698