| 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 class ForInTest { | 5 class ForInTest { |
| 6 static testMain() { | 6 static testMain() { |
| 7 testSimple(); | 7 testSimple(); |
| 8 testBreak(); | 8 testBreak(); |
| 9 testContinue(); | 9 testContinue(); |
| 10 testClosure(); | 10 testClosure(); |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 int count = 0; | 72 int count = 0; |
| 73 for (final i in set) { | 73 for (final i in set) { |
| 74 if (i < 4) continue; | 74 if (i < 4) continue; |
| 75 count += i; | 75 count += i; |
| 76 } | 76 } |
| 77 Expect.equals(4, count); | 77 Expect.equals(4, count); |
| 78 } | 78 } |
| 79 | 79 |
| 80 static void testClosure() { | 80 static void testClosure() { |
| 81 Set<int> set = getSmallSet(); | 81 Set<int> set = getSmallSet(); |
| 82 List<Function> closures = new List.fixedLength(set.length); | 82 List<Function> closures = new List(set.length); |
| 83 int index = 0; | 83 int index = 0; |
| 84 for (var i in set) { | 84 for (var i in set) { |
| 85 closures[index++] = () => i; | 85 closures[index++] = () => i; |
| 86 } | 86 } |
| 87 | 87 |
| 88 Expect.equals(index, set.length); | 88 Expect.equals(index, set.length); |
| 89 Expect.equals(7, closures[0]() + closures[1]() + closures[2]()); | 89 Expect.equals(7, closures[0]() + closures[1]() + closures[2]()); |
| 90 } | 90 } |
| 91 } | 91 } |
| 92 | 92 |
| 93 main() { | 93 main() { |
| 94 ForInTest.testMain(); | 94 ForInTest.testMain(); |
| 95 } | 95 } |
| OLD | NEW |