Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: tests/corelib/for_in_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/corelib/corelib.status ('k') | tests/corelib/future_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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(set.length); 82 List<Function> closures = new List.fixedLength(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 }
OLDNEW
« no previous file with comments | « tests/corelib/corelib.status ('k') | tests/corelib/future_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698