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

Side by Side Diff: tool/input_sdk/lib/core/list.dart

Issue 1152333009: Delete dart2js specific private library code (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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) 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 * temporarily and is restored before continuing the iteration, the iterator 44 * temporarily and is restored before continuing the iteration, the iterator
45 * does not detect it. 45 * does not detect it.
46 * 46 *
47 * It is generally not allowed to modify the list's length (adding or removing 47 * It is generally not allowed to modify the list's length (adding or removing
48 * elements) while an operation on the list is being performed, 48 * elements) while an operation on the list is being performed,
49 * for example during a call to [forEach] or [sort]. 49 * for example during a call to [forEach] or [sort].
50 * Changing the list's length while it is being iterated, either by iterating it 50 * Changing the list's length while it is being iterated, either by iterating it
51 * directly or through iterating an [Iterable] that is backed by the list, will 51 * directly or through iterating an [Iterable] that is backed by the list, will
52 * break the iteration. 52 * break the iteration.
53 */ 53 */
54 @SupportJsExtensionMethod() 54 @SupportJsExtensionMethods()
55 @JsPeerInterface(name: 'Array') 55 @JsPeerInterface(name: 'Array')
56 abstract class List<E> implements Iterable<E>, EfficientLength { 56 abstract class List<E> implements Iterable<E>, EfficientLength {
57 /** 57 /**
58 * Creates a list of the given length. 58 * Creates a list of the given length.
59 * 59 *
60 * The created list is fixed-length if [length] is provided. 60 * The created list is fixed-length if [length] is provided.
61 * 61 *
62 * List fixedLengthList = new List(3); 62 * List fixedLengthList = new List(3);
63 * fixedLengthList.length; // 3 63 * fixedLengthList.length; // 3
64 * fixedLengthList.length = 1; // Error 64 * fixedLengthList.length = 1; // Error
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 * 706 *
707 * List<String> words = ['fee', 'fi', 'fo', 'fum']; 707 * List<String> words = ['fee', 'fi', 'fo', 'fum'];
708 * Map<int, String> map = words.asMap(); 708 * Map<int, String> map = words.asMap();
709 * map[0] + map[1]; // 'feefi'; 709 * map[0] + map[1]; // 'feefi';
710 * map.keys.toList(); // [0, 1, 2, 3] 710 * map.keys.toList(); // [0, 1, 2, 3]
711 */ 711 */
712 Map<int, E> asMap() { 712 Map<int, E> asMap() {
713 return new IterableMixinWorkaround<E>().asMapList(this); 713 return new IterableMixinWorkaround<E>().asMapList(this);
714 } 714 }
715 } 715 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698