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

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

Issue 17599008: Stop passing the selector name separately to methods in the enqueuer. Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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/compiler.dart
diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
index 96490f5c03790dbf7f869857c9fc4a0d3e50e52b..9a7b131451c4d3ad9a73cf798d746d5c5c3e407a 100644
--- a/sdk/lib/_internal/compiler/implementation/compiler.dart
+++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
@@ -914,7 +914,7 @@ abstract class Compiler implements DiagnosticListener {
enqueuer.codegen.registerGetOfStaticFunction(mainApp.find(MAIN));
}
if (enabledNoSuchMethod) {
- enqueuer.codegen.registerInvocation(NO_SUCH_METHOD, noSuchMethodSelector);
+ enqueuer.codegen.registerInvocation(noSuchMethodSelector);
enqueuer.codegen.addToWorkList(createInvocationMirrorElement);
}
if (compileAll) {

Powered by Google App Engine
This is Rietveld 408576698