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