Index: pkg/compiler/lib/src/universe/function_set.dart |
diff --git a/pkg/compiler/lib/src/universe/function_set.dart b/pkg/compiler/lib/src/universe/function_set.dart |
index a51c19986d5e33e6368597fce0c0103bb582455d..6b8a2d11913a7bbfb3f97442ee29c44c214be3d9 100644 |
--- a/pkg/compiler/lib/src/universe/function_set.dart |
+++ b/pkg/compiler/lib/src/universe/function_set.dart |
@@ -125,7 +125,7 @@ class SelectorMask { |
String get name => selector.name; |
bool applies(Element element, ClassWorld classWorld) { |
- if (!selector.appliesUnnamed(element, classWorld)) return false; |
+ if (!selector.appliesUnnamed(element, classWorld.backend)) return false; |
return constraint.canHit(element, selector, classWorld); |
} |