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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/lib/interceptors.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
Index: dart/sdk/lib/_internal/compiler/implementation/lib/interceptors.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/lib/interceptors.dart b/dart/sdk/lib/_internal/compiler/implementation/lib/interceptors.dart
index ee7f0e9f014d60a56f05f6dd8c9142a47632eddb..915fbf1e27aad7d12c5c44dd393cab4281deb013 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/lib/interceptors.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/lib/interceptors.dart
@@ -140,7 +140,7 @@ getNativeInterceptor(object) {
}
/**
- * If [InvocationMirror.invokeOn] is being used, this variable
+ * If [Invocation.invokeOn] is being used, this variable
* contains a JavaScript array with the names of methods that are
* intercepted.
*/
@@ -203,7 +203,7 @@ abstract class Interceptor {
String toString() => Primitives.objectToString(this);
- dynamic noSuchMethod(InvocationMirror invocation) {
+ dynamic noSuchMethod(Invocation invocation) {
throw new NoSuchMethodError(this,
invocation.memberName,
invocation.positionalArguments,

Powered by Google App Engine
This is Rietveld 408576698