| 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 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
| 5 // Tests for closures sharing mutable bindings. | 7 // Tests for closures sharing mutable bindings. |
| 6 | 8 |
| 7 var f; | 9 var f; |
| 8 var g; | 10 var g; |
| 9 | 11 |
| 10 setupPlain() { | 12 setupPlain() { |
| 11 int j = 1000; | 13 int j = 1000; |
| 12 // Two closures sharing variable 'j'; j initially is 1000. | 14 // Two closures sharing variable 'j'; j initially is 1000. |
| 13 f = (int x) { var q = j; j = x; return q;}; | 15 f = (int x) { var q = j; j = x; return q;}; |
| 14 g = (int x) { var q = j; j = x; return q;}; | 16 g = (int x) { var q = j; j = x; return q;}; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 42 Expect.equals(300, g(400)); | 44 Expect.equals(300, g(400)); |
| 43 Expect.equals(400, g(500)); | 45 Expect.equals(400, g(500)); |
| 44 } | 46 } |
| 45 | 47 |
| 46 | 48 |
| 47 main() { | 49 main() { |
| 48 test(setupPlain); | 50 test(setupPlain); |
| 49 test(setupLoop); | 51 test(setupLoop); |
| 50 test(setupNestedLoop); | 52 test(setupNestedLoop); |
| 51 } | 53 } |
| OLD | NEW |