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

Unified Diff: dart/sdk/lib/core/object.dart

Issue 14049009: Rename Invocation to InvocationMirror. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged 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
« no previous file with comments | « dart/sdk/lib/core/invocation_mirror.dart ('k') | dart/tests/co19/co19-runtime.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/core/object.dart
diff --git a/dart/sdk/lib/core/object.dart b/dart/sdk/lib/core/object.dart
index 74cc651c7b8d42dfcfee815e1b102c67c6ce738d..3b61927bd691ed6000a62b398f02d649579c9222 100644
--- a/dart/sdk/lib/core/object.dart
+++ b/dart/sdk/lib/core/object.dart
@@ -50,14 +50,14 @@ class Object {
/**
* [noSuchMethod] is invoked when users invoke a non-existant method
* on an object. The name of the method and the arguments of the
- * invocation are passed to [noSuchMethod] in an [InvocationMirror].
+ * invocation are passed to [noSuchMethod] in an [Invocation].
* If [noSuchMethod] returns a value, that value becomes the result of
* the original invocation.
*
* The default behavior of [noSuchMethod] is to throw a
* [noSuchMethodError].
*/
- external dynamic noSuchMethod(InvocationMirror invocation);
+ external dynamic noSuchMethod(Invocation invocation);
/**
* A representation of the runtime type of the object.
« no previous file with comments | « dart/sdk/lib/core/invocation_mirror.dart ('k') | dart/tests/co19/co19-runtime.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698