| Index: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| index f761f63d630df0f1ad4a7ecb6b76c7349940a717..02e7416f51bd162a8513113b893bf2a84dcc68ed 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| @@ -132,14 +132,10 @@ class DartBackend extends Backend {
|
| }
|
| // Enqueue the methods that the VM might invoke on user objects because
|
| // we don't trust the resolution to always get these included.
|
| - world.registerInvocation(
|
| - null, new Selector.call("toString", null, 0));
|
| - world.registerInvokedGetter(
|
| - null, new Selector.getter("hashCode", null));
|
| - world.registerInvocation(
|
| - null, new Selector.binaryOperator("=="));
|
| - world.registerInvocation(
|
| - null, new Selector.call("compareTo", null, 1));
|
| + world.registerInvocation(new Selector.call("toString", null, 0));
|
| + world.registerInvokedGetter(new Selector.getter("hashCode", null));
|
| + world.registerInvocation(new Selector.binaryOperator("=="));
|
| + world.registerInvocation(new Selector.call("compareTo", null, 1));
|
| }
|
|
|
| void codegen(CodegenWorkItem work) { }
|
|
|