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 var a = 42; | 7 var a = 42; |
6 | 8 |
7 foo1() { | 9 foo1() { |
8 var i = 0; | 10 var i = 0; |
9 var saved; | 11 var saved; |
10 do { | 12 do { |
11 saved = i; | 13 saved = i; |
12 i = a; | 14 i = a; |
13 } while (i == saved); | 15 } while (i == saved); |
14 Expect.equals(0, saved); | 16 Expect.equals(0, saved); |
(...skipping 21 matching lines...) Expand all Loading... |
36 } while (i != saved); | 38 } while (i != saved); |
37 Expect.equals(42, saved); | 39 Expect.equals(42, saved); |
38 Expect.equals(42, i); | 40 Expect.equals(42, i); |
39 } | 41 } |
40 | 42 |
41 main() { | 43 main() { |
42 foo1(); | 44 foo1(); |
43 foo2(); | 45 foo2(); |
44 foo3(); | 46 foo3(); |
45 } | 47 } |
OLD | NEW |