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

Unified Diff: dart/tests/language/super_operator_index6_test.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/tests/language/super_operator_index6_test.dart
diff --git a/dart/tests/language/super_operator_index6_test.dart b/dart/tests/language/super_operator_index6_test.dart
index 9fb942f959f95b071928f0834dcb7ddaf7b8ec19..57e3951b60fd94a1338158b40f1716e6482bd4cd 100644
--- a/dart/tests/language/super_operator_index6_test.dart
+++ b/dart/tests/language/super_operator_index6_test.dart
@@ -10,7 +10,7 @@ class A {
var indexField = new List(2);
operator[]=(index, value) { indexField[index] = value; }
- noSuchMethod(InvocationMirror im) {
+ noSuchMethod(Invocation im) {
if (im.memberName == '[]') {
Expect.equals(1, im.positionalArguments.length);
return indexField[im.positionalArguments[0]];
« no previous file with comments | « dart/tests/language/super_operator_index5_test.dart ('k') | dart/tests/language/super_operator_index7_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698