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

Unified Diff: pkg/compiler/lib/src/inferrer/type_graph_nodes.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/inferrer/type_graph_nodes.dart
diff --git a/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart b/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart
index 45b7ed6d511f3dd273ad491baaef62724a7bcd7a..f8931acb5d3a969070b43f97bfa3f1c2f917fec7 100644
--- a/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart
+++ b/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart
@@ -976,7 +976,8 @@ class DynamicCallSiteTypeInformation extends CallSiteTypeInformation {
JavaScriptBackend backend = compiler.backend;
TypeMask maskToUse =
inferrer.closedWorld.extendMaskIfReachesAll(selector, typeMask);
- bool canReachAll = backend.hasInvokeOnSupport && (maskToUse != typeMask);
+ bool canReachAll =
+ backend.backendUsage.hasInvokeOnSupport && (maskToUse != typeMask);
// If this call could potentially reach all methods that satisfy
// the untyped selector (through noSuchMethod's `Invocation`

Powered by Google App Engine
This is Rietveld 408576698