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 7260c6de75e42ae57d2a6d8e9bdada0b9bc17120..0b4b0bc9990cddaea99aa8426fa507bc4e1e7696 100644 |
--- a/pkg/compiler/lib/src/universe/function_set.dart |
+++ b/pkg/compiler/lib/src/universe/function_set.dart |
@@ -59,7 +59,7 @@ class FunctionSet { |
FunctionSetQuery query(Selector selector, TypeMask mask) { |
String name = selector.name; |
FunctionSetNode node = nodes[name]; |
- FunctionSetNode noSuchMethods = nodes[Compiler.NO_SUCH_METHOD]; |
+ FunctionSetNode noSuchMethods = nodes[Identifiers.noSuchMethod_]; |
if (node != null) { |
return node.query(selector, mask, compiler, noSuchMethods); |
} |
@@ -67,7 +67,7 @@ class FunctionSet { |
// only hit [:noSuchMethod:]. |
if (noSuchMethods == null) return const FunctionSetQuery(const <Element>[]); |
return noSuchMethods.query( |
- compiler.noSuchMethodSelector, mask, compiler, null); |
+ Selectors.noSuchMethod_, mask, compiler, null); |
} |
void forEach(Function action) { |
@@ -204,7 +204,7 @@ class FunctionSetNode { |
if (noSuchMethods != null |
&& mask.needsNoSuchMethodHandling(selector, classWorld)) { |
FunctionSetQuery noSuchMethodQuery = noSuchMethods.query( |
- compiler.noSuchMethodSelector, |
+ Selectors.noSuchMethod_, |
mask, |
compiler, |
null); |