| 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() {
|
|
|