Chromium Code Reviews| Index: tests/language/src/InstanceofTest.dart |
| =================================================================== |
| --- tests/language/src/InstanceofTest.dart (revision 7030) |
| +++ tests/language/src/InstanceofTest.dart (working copy) |
| @@ -180,5 +180,9 @@ |
| class D extends C {D() : super() {}} |
| main() { |
| - InstanceofTest.testMain(); |
| + // Repeat type checks so that inlined tests can be tested as well. |
| + for (int i = 0; i < 5; i++) { |
| + InstanceofTest.testMain(); |
| + } |
| } |
| + |