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

Unified Diff: dart/tests/language/super_call4_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_call4_test.dart
diff --git a/dart/tests/language/super_call4_test.dart b/dart/tests/language/super_call4_test.dart
index 4d68a19b2f4247929b24847e2d9f7eef240e43b3..079b8d21be425213b8e844620de18d5b255e9ebe 100644
--- a/dart/tests/language/super_call4_test.dart
+++ b/dart/tests/language/super_call4_test.dart
@@ -10,7 +10,7 @@ import "package:expect/expect.dart";
class C {
E e = new E();
- bool noSuchMethod(InvocationMirror im) {
+ bool noSuchMethod(Invocation im) {
if (im.memberName == 'foo') {
return im.positionalArguments.isEmpty &&
im.namedArguments.isEmpty &&
@@ -36,7 +36,7 @@ class C {
}
class D extends C {
- bool noSuchMethod(InvocationMirror im) {
+ bool noSuchMethod(Invocation im) {
return false;
}
test1() {
« no previous file with comments | « dart/tests/language/overridden_no_such_method.dart ('k') | dart/tests/language/super_getter_setter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698