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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.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/js_backend/emitter.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart b/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
index a28b33add6d66e61020c25b81f5d90639826381b..92be012cd9ff063abeb9340e4ed022e3ffa16621 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart
@@ -2812,11 +2812,11 @@ if (typeof document !== "undefined" && document.readyState !== "complete") {
}
/**
- * If [:invokeOn:] has been compiled, emit all the possible selector names
- * that are intercepted into the [:interceptedNames:] top-level
- * variable. The implementation of [:invokeOn:] will use it to
- * determine whether it should call the method with an extra
- * parameter.
+ * If [JSInvocationMirror._invokeOn] has been compiled, emit all the
+ * possible selector names that are intercepted into the
+ * [interceptedNames] top-level variable. The implementation of
+ * [_invokeOn] will use it to determine whether it should call the
+ * method with an extra parameter.
*/
void emitInterceptedNames(CodeBuffer buffer) {
if (!compiler.enabledInvokeOn) return;

Powered by Google App Engine
This is Rietveld 408576698