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

Side by Side Diff: tests/corelib/list_fixed_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/list_first_test.dart ('k') | tests/corelib/list_growable_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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 main() {
6 var a;
7
8 a = new List.fixedLength(42);
9 Expect.equals(42, a.length);
10 Expect.throws(() => a.add(499), (e) => e is UnsupportedError);
11 Expect.equals(42, a.length);
12 for (int i = 0; i < 42; i++) {
13 Expect.equals(null, a[i]);
14 }
15 Expect.throws(() => a.clear(), (e) => e is UnsupportedError);
16 Expect.equals(42, a.length);
17
18 a = new List.fixedLength(42, fill: -2);
19 Expect.equals(42, a.length);
20 Expect.throws(() => a.add(499), (e) => e is UnsupportedError);
21 Expect.equals(42, a.length);
22 for (int i = 0; i < 42; i++) {
23 Expect.equals(-2, a[i]);
24 }
25 Expect.throws(() => a.clear(), (e) => e is UnsupportedError);
26 Expect.equals(42, a.length);
27 }
OLDNEW
« no previous file with comments | « tests/corelib/list_first_test.dart ('k') | tests/corelib/list_growable_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698