| 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 closure0() { | 5 closure0() { |
| 6 var fs = []; | 6 var fs = []; |
| 7 for (var x = 1; x <= 3; x++) { | 7 for (var x = 1; x <= 3; x++) { |
| 8 fs.add(fun() { return x; }); | 8 fs.add(fun() { return x; }); |
| 9 } | 9 } |
| 10 Expect.equals(3, fs.length); | 10 Expect.equals(3, fs.length); |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 Expect.equals(0, g()); | 65 Expect.equals(0, g()); |
| 66 } | 66 } |
| 67 | 67 |
| 68 main() { | 68 main() { |
| 69 closure0(); | 69 closure0(); |
| 70 closure1(); | 70 closure1(); |
| 71 closure2(); | 71 closure2(); |
| 72 closure3(); | 72 closure3(); |
| 73 closure4(); | 73 closure4(); |
| 74 } | 74 } |
| OLD | NEW |