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

Side by Side Diff: sdk/lib/_collection_dev/iterable.dart

Issue 23875032: Expose Zones. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Mark stack trace test as failing. Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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._collection.dev; 5 part of dart._collection.dev;
6 6
7 7
8 // This is a hack to make @deprecated work in dart:io. Don't remove or use this, 8 // This is a hack to make @deprecated work in dart:io. Don't remove or use this,
9 // unless coordinated with either me or the core library team. Thanks! 9 // unless coordinated with either me or the core library team. Thanks!
10 // TODO(ajohnsen): Remove at the 11th of August 2013. 10 // TODO(ajohnsen): Remove at the 11th of August 2013.
11 // TODO(ajohnsen): Remove hide in: 11 // TODO(ajohnsen): Remove hide in:
12 // tools/dom/templates/html/dart2js/html_dart2js.darttemplate 12 // tools/dom/templates/html/dart2js/html_dart2js.darttemplate
13 // tools/dom/templates/html/dart2js/svg_dart2js.darttemplate 13 // tools/dom/templates/html/dart2js/svg_dart2js.darttemplate
14 // tools/dom/templates/html/dart2js/web_audio_dart2js.darttemplate 14 // tools/dom/templates/html/dart2js/web_audio_dart2js.darttemplate
15 // tools/dom/templates/html/dart2js/web_gl_dart2js.darttemplate 15 // tools/dom/templates/html/dart2js/web_gl_dart2js.darttemplate
16 // tools/dom/templates/html/dart2js/web_sql_dart2js.darttemplate 16 // tools/dom/templates/html/dart2js/web_sql_dart2js.darttemplate
17 // tools/dom/templates/html/dartium/html_dartium.darttemplate 17 // tools/dom/templates/html/dartium/html_dartium.darttemplate
18 // tools/dom/templates/html/dartium/svg_dartium.darttemplate 18 // tools/dom/templates/html/dartium/svg_dartium.darttemplate
19 // tools/dom/templates/html/dartium/web_audio_dartium.darttemplate 19 // tools/dom/templates/html/dartium/web_audio_dartium.darttemplate
20 // tools/dom/templates/html/dartium/web_gl_dartium.darttemplate 20 // tools/dom/templates/html/dartium/web_gl_dartium.darttemplate
21 // tools/dom/templates/html/dartium/web_sql_dartium.darttemplate 21 // tools/dom/templates/html/dartium/web_sql_dartium.darttemplate
22 // sdk/lib/core/regexp.dart 22 // sdk/lib/core/regexp.dart
23 // TODO(floitsch): also used in dart:async until end of september for
Lasse Reichstein Nielsen 2013/09/23 14:24:12 Capitalize September.
floitsch 2013/09/23 17:12:07 Done.
24 // deprecation of runZonedExperimental.
23 25
24 const deprecated = 0; 26 const deprecated = 0;
25 27
26 /** 28 /**
27 * An [Iterable] for classes that have efficient [length] and [elementAt]. 29 * An [Iterable] for classes that have efficient [length] and [elementAt].
28 * 30 *
29 * All other methods are implemented in terms of [length] and [elementAt], 31 * All other methods are implemented in terms of [length] and [elementAt],
30 * including [iterator]. 32 * including [iterator].
31 */ 33 */
32 abstract class ListIterable<E> extends IterableBase<E> { 34 abstract class ListIterable<E> extends IterableBase<E> {
(...skipping 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 1077
1076 static Set setDifference(Set set, Set other, Set result) { 1078 static Set setDifference(Set set, Set other, Set result) {
1077 for (var element in set) { 1079 for (var element in set) {
1078 if (!other.contains(element)) { 1080 if (!other.contains(element)) {
1079 result.add(element); 1081 result.add(element);
1080 } 1082 }
1081 } 1083 }
1082 return result; 1084 return result;
1083 } 1085 }
1084 } 1086 }
OLDNEW
« no previous file with comments | « pkg/pkg.status ('k') | sdk/lib/async/async.dart » ('j') | sdk/lib/async/async.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698