| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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"; |
| 6 |
| 5 // Dart test program for testing throw expressions. | 7 // Dart test program for testing throw expressions. |
| 6 | 8 |
| 7 void test1() { | 9 void test1() { |
| 8 var x = 6; | 10 var x = 6; |
| 9 try { | 11 try { |
| 10 throw x = 10; | 12 throw x = 10; |
| 11 x = 0; | 13 x = 0; |
| 12 } catch(e) { | 14 } catch(e) { |
| 13 Expect.equals(10, e); | 15 Expect.equals(10, e); |
| 14 Expect.equals(10, x); | 16 Expect.equals(10, x); |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 Expect.equals(77, e); | 89 Expect.equals(77, e); |
| 88 Expect.equals(11, x.qqq); | 90 Expect.equals(11, x.qqq); |
| 89 } | 91 } |
| 90 } | 92 } |
| 91 | 93 |
| 92 main() { | 94 main() { |
| 93 test1(); | 95 test1(); |
| 94 test2(); | 96 test2(); |
| 95 test3(); | 97 test3(); |
| 96 } | 98 } |
| OLD | NEW |