| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |