Chromium Code Reviews| 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..a3d8c71719d4085b0ba49cf503554b4ecac927b5 100644 |
| --- a/tests/lib/mirrors/intercepted_object_test.dart |
| +++ b/tests/lib/mirrors/intercepted_object_test.dart |
| @@ -25,6 +25,11 @@ checkImplements(object, String name) { |
| return; |
| } |
| } |
| + |
| + if (symName == stringify(cls.simpleName)) { |
| + checkClassMirrorMethods(cls); |
| + return; |
| + } |
|
gbracha
2014/11/06 00:51:17
This just adds the reflexive case, i.e. class C im
rmacnak
2014/11/06 01:02:49
Added.
|
| // TODO(floitsch): use correct fail |
| expect(name, "super interface not found"); |