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

Side by Side Diff: tests/corelib_2/sort_helper.dart

Issue 2983383002: Migrated test block 26 to Dart 2.0. (Closed)
Patch Set: Updated splay_tree_from_iterables_test to not check for checked mode, and updated status files acco… Created 3 years, 4 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
« no previous file with comments | « tests/corelib_2/shuffle_test.dart ('k') | tests/corelib_2/sort_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 library sort_helper; 5 library sort_helper;
6 6
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 8
9 typedef Sorter 9 typedef Sorter
10 = void Function(List<num>); 10 = void Function(List<num>);
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 148
149 for (int i = 0; i < a.length; i++) { 149 for (int i = 0; i < a.length; i++) {
150 a[i] = 1.5; 150 a[i] = 1.5;
151 } 151 }
152 testSort(a); 152 testSort(a);
153 } 153 }
154 154
155 Sorter sortFunction; 155 Sorter sortFunction;
156 Comparer compareFunction; 156 Comparer compareFunction;
157 } 157 }
OLDNEW
« no previous file with comments | « tests/corelib_2/shuffle_test.dart ('k') | tests/corelib_2/sort_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698