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

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

Issue 17389003: interceptedNames should include all interceptor method generated, not just the ones called. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
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: dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
index b4f0d926ca3d6e79cb7f318682ace691f433e7e8..f5fb8e640d4a3316b3dbcd3797a5060851f9d591 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
@@ -1550,11 +1550,7 @@ abstract class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
return receiverType.refine(selector, compiler);
}
- void registerInvoke(HInvokeDynamic node, Selector selector) {
- if (node.isInterceptedCall) {
- backend.addInterceptedSelector(selector);
- }
- }
+ void registerInvoke(HInvokeDynamic node, Selector selector) {}
ngeoffray 2013/06/18 12:45:02 I'd get rid of this method.
ahe 2013/06/18 12:55:07 Done.
void registerMethodInvoke(HInvokeDynamic node) {
Selector selector = getOptimizedSelectorFor(node, node.selector);

Powered by Google App Engine
This is Rietveld 408576698