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

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

Issue 14251021: Move invokeOn to InstanceMirror. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 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/resolution/members.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart b/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart
index d2251f195f80d9e60a535689e647336745b5470e..6e26ddbf4b4549ebfc5b17ec729fdaa717628077 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart
@@ -2012,8 +2012,8 @@ class ResolverVisitor extends CommonResolverVisitor<Element> {
node, name, MessageKind.NO_SUCH_SUPER_MEMBER,
{'className': currentClass, 'memberName': name});
// We still need to register the invocation, because we might
- // call [:super.noSuchMethod:] that does a
- // [:Invocation.invokeOn:].
+ // call [:super.noSuchMethod:] which calls
+ // [JSInvocationMirror._invokeOn].
world.registerDynamicInvocation(selector.name, selector);
compiler.backend.registerSuperNoSuchMethod(mapping);
}

Powered by Google App Engine
This is Rietveld 408576698