| 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 | |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 class ExceptionTest { | 4 class ExceptionTest { |
| 8 static testMain() { | 5 static testMain() { |
| 9 int i = 0; | 6 int i = 0; |
| 10 try { | 7 try { |
| 11 throw "Hello"; | 8 throw "Hello"; |
| 12 } on String catch (s) { | 9 } on String catch (s) { |
| 13 print(s); | 10 print(s); |
| 14 i += 10; | 11 i += 10; |
| 15 } | 12 } |
| 16 | 13 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 33 } catch (x) { | 30 } catch (x) { |
| 34 correctCatch = false; | 31 correctCatch = false; |
| 35 } | 32 } |
| 36 Expect.isTrue(correctCatch); | 33 Expect.isTrue(correctCatch); |
| 37 } | 34 } |
| 38 } | 35 } |
| 39 | 36 |
| 40 main() { | 37 main() { |
| 41 ExceptionTest.testMain(); | 38 ExceptionTest.testMain(); |
| 42 } | 39 } |
| OLD | NEW |