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

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

Issue 3000543002: Migrate test block 11 to Dart 2.0. (Closed)
Patch Set: Removed checkedMode check. 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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"; 5 import "package:expect/expect.dart";
6 import 'dart:collection'; 6 import 'dart:collection';
7 import 'dart:typed_data'; 7 import 'dart:typed_data';
8 8
9 class MyList extends ListBase { 9 class MyList extends ListBase {
10 List list; 10 List list;
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 ..[1] = 1 196 ..[1] = 1
197 ..[2] = 2 197 ..[2] = 2
198 ..[3] = 3; 198 ..[3] = 3;
199 testModification(splayMap, put4, (x) => x.keys); 199 testModification(splayMap, put4, (x) => x.keys);
200 splayMap = new SplayTreeMap() 200 splayMap = new SplayTreeMap()
201 ..[1] = 1 201 ..[1] = 1
202 ..[2] = 2 202 ..[2] = 2
203 ..[3] = 3; 203 ..[3] = 3;
204 testModification(splayMap, put4, (x) => x.values); 204 testModification(splayMap, put4, (x) => x.values);
205 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698