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

Side by Side Diff: sdk/lib/core/list.dart

Issue 1327083002: Revert "Patched in Dartium JsInterop" (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 | « sdk/lib/_internal/js_runtime/lib/js_array.dart ('k') | sdk/lib/html/dart2js/html_dart2js.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) 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 part of dart.core; 5 part of dart.core;
6 6
7 /** 7 /**
8 * An indexable collection of objects with a length. 8 * An indexable collection of objects with a length.
9 * 9 *
10 * Subclasses of this class implement different kinds of lists. 10 * Subclasses of this class implement different kinds of lists.
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 int get length; 152 int get length;
153 153
154 /** 154 /**
155 * Changes the length of this list. 155 * Changes the length of this list.
156 * 156 *
157 * If [newLength] is greater than 157 * If [newLength] is greater than
158 * the current length, entries are initialized to [:null:]. 158 * the current length, entries are initialized to [:null:].
159 * 159 *
160 * Throws an [UnsupportedError] if the list is fixed-length. 160 * Throws an [UnsupportedError] if the list is fixed-length.
161 */ 161 */
162 set length(int newLength); 162 void set length(int newLength);
163 163
164 /** 164 /**
165 * Adds [value] to the end of this list, 165 * Adds [value] to the end of this list,
166 * extending the length by one. 166 * extending the length by one.
167 * 167 *
168 * Throws an [UnsupportedError] if the list is fixed-length. 168 * Throws an [UnsupportedError] if the list is fixed-length.
169 */ 169 */
170 void add(E value); 170 void add(E value);
171 171
172 /** 172 /**
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 * as values. The `Map.keys` [Iterable] iterates the indices of this list 466 * as values. The `Map.keys` [Iterable] iterates the indices of this list
467 * in numerical order. 467 * in numerical order.
468 * 468 *
469 * List<String> words = ['fee', 'fi', 'fo', 'fum']; 469 * List<String> words = ['fee', 'fi', 'fo', 'fum'];
470 * Map<int, String> map = words.asMap(); 470 * Map<int, String> map = words.asMap();
471 * map[0] + map[1]; // 'feefi'; 471 * map[0] + map[1]; // 'feefi';
472 * map.keys.toList(); // [0, 1, 2, 3] 472 * map.keys.toList(); // [0, 1, 2, 3]
473 */ 473 */
474 Map<int, E> asMap(); 474 Map<int, E> asMap();
475 } 475 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/js_runtime/lib/js_array.dart ('k') | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698