| 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 import "package:expect/expect.dart"; |
| 7 |
| 6 var f; | 8 var f; |
| 7 | 9 |
| 8 main() { | 10 main() { |
| 9 // Capture the loop variable, ensure we capture the right value. | 11 // Capture the loop variable, ensure we capture the right value. |
| 10 for (int i = 0; i < 10; i++) { | 12 for (int i = 0; i < 10; i++) { |
| 11 if (i == 7) { | 13 if (i == 7) { |
| 12 f = () => "i = $i"; | 14 f = () => "i = $i"; |
| 13 } | 15 } |
| 14 } | 16 } |
| 15 Expect.equals("i = 7", f()); | 17 Expect.equals("i = 7", f()); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 // Nested loops with captured variables. | 62 // Nested loops with captured variables. |
| 61 for (int k = 0; k < 5; k++) { | 63 for (int k = 0; k < 5; k++) { |
| 62 for (int i = 0; i < 10; i++) { | 64 for (int i = 0; i < 10; i++) { |
| 63 if (k == 3 && i == 7) { | 65 if (k == 3 && i == 7) { |
| 64 f = () => "k = $k, i = $i"; | 66 f = () => "k = $k, i = $i"; |
| 65 } | 67 } |
| 66 } | 68 } |
| 67 } | 69 } |
| 68 Expect.equals("k = 3, i = 7", f()); | 70 Expect.equals("k = 3, i = 7", f()); |
| 69 } | 71 } |
| OLD | NEW |