| Index: tests/lib/mirrors/intercepted_object_test.dart
|
| diff --git a/tests/lib/mirrors/intercepted_object_test.dart b/tests/lib/mirrors/intercepted_object_test.dart
|
| index 1aa806085429e895e2b612122bf4aad288f34a40..e01733b114ca622d9263f1714a09a308d025cf1c 100644
|
| --- a/tests/lib/mirrors/intercepted_object_test.dart
|
| +++ b/tests/lib/mirrors/intercepted_object_test.dart
|
| @@ -25,6 +25,12 @@ checkImplements(object, String name) {
|
| return;
|
| }
|
| }
|
| +
|
| + // A class implements itself, even if not explicitly declared.
|
| + if (symName == stringify(cls.simpleName)) {
|
| + checkClassMirrorMethods(cls);
|
| + return;
|
| + }
|
|
|
| // TODO(floitsch): use correct fail
|
| expect(name, "super interface not found");
|
|
|