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

Unified Diff: client/dom/src/_Collections.dart

Issue 9124025: Fix type on _Collections.map; Fix removal of native file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/scripts/template_frog_dom.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/src/_Collections.dart
diff --git a/client/dom/src/_Collections.dart b/client/dom/src/_Collections.dart
index 4497e075f71e82085ca5eaf2ee400e5e090d94ee..785e669fd2a927b99190edfc782d6ea6bee55d7b 100644
--- a/client/dom/src/_Collections.dart
+++ b/client/dom/src/_Collections.dart
@@ -16,7 +16,7 @@ class _Collections {
static List map(Iterable<Object> source,
List<Object> destination,
- bool f(o)) {
+ f(o)) {
for (final e in source) {
destination.add(f(e));
}
« no previous file with comments | « client/dom/scripts/template_frog_dom.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698