Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart

Issue 382063002: Redo "Information about which functions require other functions is gathered in the enqueuer." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) { }

Powered by Google App Engine
This is Rietveld 408576698