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

Unified Diff: sdk/lib/html/html_common/filtered_element_list.dart

Issue 13945009: Make default argument to Iterable.join be "". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebuild dom libraries. Created 7 years, 8 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
Index: sdk/lib/html/html_common/filtered_element_list.dart
diff --git a/sdk/lib/html/html_common/filtered_element_list.dart b/sdk/lib/html/html_common/filtered_element_list.dart
index 63123687d1053cadb5eec7ee50dbe173362def79..ed8e12dc0234cab431cd995c0ce666898428af76 100644
--- a/sdk/lib/html/html_common/filtered_element_list.dart
+++ b/sdk/lib/html/html_common/filtered_element_list.dart
@@ -49,7 +49,7 @@ class FilteredElementList extends ListBase<Element> {
removeRange(newLength, len - newLength);
}
- String join([String separator]) => _filtered.join(separator);
+ String join([String separator = ""]) => _filtered.join(separator);
void add(Element value) {
_childNodes.add(value);

Powered by Google App Engine
This is Rietveld 408576698