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 // Dart test program for testing for statement which captures loop variable. | 4 // Dart test program for testing for statement which captures loop variable. |
5 | 5 |
6 var f; | 6 var f; |
7 | 7 |
8 main() { | 8 main() { |
9 // Capture the loop variable, ensure we capture the right value. | 9 // Capture the loop variable, ensure we capture the right value. |
10 for (int i = 0; i < 10; i++) { | 10 for (int i = 0; i < 10; i++) { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 // Nested loops with captured variables. | 60 // Nested loops with captured variables. |
61 for (int k = 0; k < 5; k++) { | 61 for (int k = 0; k < 5; k++) { |
62 for (int i = 0; i < 10; i++) { | 62 for (int i = 0; i < 10; i++) { |
63 if (k == 3 && i == 7) { | 63 if (k == 3 && i == 7) { |
64 f = () => "k = $k, i = $i"; | 64 f = () => "k = $k, i = $i"; |
65 } | 65 } |
66 } | 66 } |
67 } | 67 } |
68 Expect.equals("k = 3, i = 7", f()); | 68 Expect.equals("k = 3, i = 7", f()); |
69 } | 69 } |
OLD | NEW |