| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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"; | |
| 6 | |
| 7 main() { | 5 main() { |
| 8 var a; | 6 var a; |
| 9 | 7 |
| 10 a = new List(42); | 8 a = new List(42); |
| 11 Expect.equals(42, a.length); | 9 Expect.equals(42, a.length); |
| 12 Expect.throws(() => a.add(499), (e) => e is UnsupportedError); | 10 Expect.throws(() => a.add(499), (e) => e is UnsupportedError); |
| 13 Expect.equals(42, a.length); | 11 Expect.equals(42, a.length); |
| 14 for (int i = 0; i < 42; i++) { | 12 for (int i = 0; i < 42; i++) { |
| 15 Expect.equals(null, a[i]); | 13 Expect.equals(null, a[i]); |
| 16 } | 14 } |
| 17 Expect.throws(() => a.clear(), (e) => e is UnsupportedError); | 15 Expect.throws(() => a.clear(), (e) => e is UnsupportedError); |
| 18 Expect.equals(42, a.length); | 16 Expect.equals(42, a.length); |
| 19 | 17 |
| 20 a = new List.filled(42, -2); | 18 a = new List.filled(42, -2); |
| 21 Expect.equals(42, a.length); | 19 Expect.equals(42, a.length); |
| 22 Expect.throws(() => a.add(499), (e) => e is UnsupportedError); | 20 Expect.throws(() => a.add(499), (e) => e is UnsupportedError); |
| 23 Expect.equals(42, a.length); | 21 Expect.equals(42, a.length); |
| 24 for (int i = 0; i < 42; i++) { | 22 for (int i = 0; i < 42; i++) { |
| 25 Expect.equals(-2, a[i]); | 23 Expect.equals(-2, a[i]); |
| 26 } | 24 } |
| 27 Expect.throws(() => a.clear(), (e) => e is UnsupportedError); | 25 Expect.throws(() => a.clear(), (e) => e is UnsupportedError); |
| 28 Expect.equals(42, a.length); | 26 Expect.equals(42, a.length); |
| 29 } | 27 } |
| OLD | NEW |