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

Side by Side Diff: sdk/lib/html/src/_Collections.dart

Issue 11407002: Adding 'part of html' to all files which are used by dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 html;
6
5 /** 7 /**
6 * The [Collections] class implements static methods useful when 8 * The [Collections] class implements static methods useful when
7 * writing a class that implements [Collection] and the [iterator] 9 * writing a class that implements [Collection] and the [iterator]
8 * method. 10 * method.
9 */ 11 */
10 class _Collections { 12 class _Collections {
11 static bool contains(Iterable<Object> iterable, Object element) { 13 static bool contains(Iterable<Object> iterable, Object element) {
12 for (final e in iterable) { 14 for (final e in iterable) {
13 if (e == element) return true; 15 if (e == element) return true;
14 } 16 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 for (final e in source) { 52 for (final e in source) {
51 if (f(e)) destination.add(e); 53 if (f(e)) destination.add(e);
52 } 54 }
53 return destination; 55 return destination;
54 } 56 }
55 57
56 static bool isEmpty(Iterable<Object> iterable) { 58 static bool isEmpty(Iterable<Object> iterable) {
57 return !iterable.iterator().hasNext; 59 return !iterable.iterator().hasNext;
58 } 60 }
59 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698