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

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

Issue 11085003: Convert String to a class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged to tip of bleeding_edge. Updated test expecteation 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
« no previous file with comments | « sdk/lib/core/string_buffer.dart ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/strings.dart
diff --git a/sdk/lib/core/strings.dart b/sdk/lib/core/strings.dart
index 86655e94ca32d38752f4d0363a8d29ddfc79b738..5029b46d4badd6f8f560b4dc32fa1410078ec189 100644
--- a/sdk/lib/core/strings.dart
+++ b/sdk/lib/core/strings.dart
@@ -6,14 +6,10 @@ abstract class Strings {
/**
* Joins all the given strings to create a new string.
*/
- static String join(List<String> strings, String separator) {
- return _StringImpl.join(strings, separator);
- }
+ external static String join(List<String> strings, String separator);
/**
* Concatenates all the given strings to create a new string.
*/
- static String concatAll(List<String> strings) {
- return _StringImpl.concatAll(strings);
- }
+ external static String concatAll(List<String> strings);
}
« no previous file with comments | « sdk/lib/core/string_buffer.dart ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698