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

Unified Diff: sdk/lib/core/strings.dart

Issue 11414069: Make mappedBy lazy. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error. 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/core/strings.dart
diff --git a/sdk/lib/core/strings.dart b/sdk/lib/core/strings.dart
index 5029b46d4badd6f8f560b4dc32fa1410078ec189..546109444849558a9b39ce133d75b7a06b96a732 100644
--- a/sdk/lib/core/strings.dart
+++ b/sdk/lib/core/strings.dart
@@ -6,10 +6,10 @@ abstract class Strings {
/**
* Joins all the given strings to create a new string.
*/
- external static String join(List<String> strings, String separator);
+ external static String join(Iterable<String> strings, String separator);
/**
* Concatenates all the given strings to create a new string.
*/
- external static String concatAll(List<String> strings);
+ external static String concatAll(Iterable<String> strings);
}

Powered by Google App Engine
This is Rietveld 408576698