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 18aaff06bbacfaf4cd4d98694ea19d88ab79e42d..c10471689bf60eec174ca0650e8a83191e639cce 100644 |
--- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart |
+++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart |
@@ -133,13 +133,13 @@ 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( |
- new Selector.call("toString", null, 0)); |
+ null, new Selector.call("toString", null, 0)); |
world.registerInvokedGetter( |
- new Selector.getter("hashCode", null)); |
+ null, new Selector.getter("hashCode", null)); |
world.registerInvocation( |
- new Selector.binaryOperator("==")); |
+ null, new Selector.binaryOperator("==")); |
world.registerInvocation( |
- new Selector.call("compareTo", null, 1)); |
+ null, new Selector.call("compareTo", null, 1)); |
} |
void codegen(CodegenWorkItem work) { } |