| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 | 6 |
| 7 class MyException { } | 7 class MyException { } |
| 8 | 8 |
| 9 class MyException1 extends MyException { } | 9 class MyException1 extends MyException { } |
| 10 | 10 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 test4(); | 144 test4(); |
| 145 test5(); | 145 test5(); |
| 146 test6(); | 146 test6(); |
| 147 test7(); | 147 test7(); |
| 148 test8(); | 148 test8(); |
| 149 test9(); | 149 test9(); |
| 150 } | 150 } |
| 151 } | 151 } |
| 152 | 152 |
| 153 main() { | 153 main() { |
| 154 TryCatchTest.testMain(); | 154 for (var i = 0; i < 2000; i++) { |
| 155 TryCatchTest.testMain(); |
| 156 } |
| 155 } | 157 } |
| OLD | NEW |