| Index: lib/compiler/implementation/compiler.dart
|
| diff --git a/lib/compiler/implementation/compiler.dart b/lib/compiler/implementation/compiler.dart
|
| index efc0a8015ca4308f184ff95c7c301b32b598b3c1..3fcd06b01934b6cd8f9385bd36515fed32b5cdd2 100644
|
| --- a/lib/compiler/implementation/compiler.dart
|
| +++ b/lib/compiler/implementation/compiler.dart
|
| @@ -267,10 +267,9 @@ class Compiler implements DiagnosticListener {
|
| return;
|
| }
|
| enabledNoSuchMethod = true;
|
| - enqueuer.resolution.registerInvocation(NO_SUCH_METHOD,
|
| - Selector.INVOCATION_2);
|
| - enqueuer.codegen.registerInvocation(NO_SUCH_METHOD,
|
| - Selector.INVOCATION_2);
|
| + Selector selector = new Selector.noSuchMethod();
|
| + enqueuer.resolution.registerInvocation(NO_SUCH_METHOD, selector);
|
| + enqueuer.codegen.registerInvocation(NO_SUCH_METHOD, selector);
|
| }
|
|
|
| void enableIsolateSupport(LibraryElement element) {
|
|
|