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

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

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « sdk/lib/core/string.dart ('k') | sdk/lib/core/strings.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/string_buffer.dart
diff --git a/sdk/lib/core/string_buffer.dart b/sdk/lib/core/string_buffer.dart
index fda711180b87694cca9e8c48621ecef622115e4f..71bf31d2a0066e8590d2d7f8182061be9a2a367a 100644
--- a/sdk/lib/core/string_buffer.dart
+++ b/sdk/lib/core/string_buffer.dart
@@ -27,7 +27,7 @@ abstract class StringBuffer {
void addCharCode(int charCode);
/// Adds all items in [objects] to the buffer.
- void addAll(Collection objects);
+ void addAll(Iterable objects);
/// Clears the string buffer.
void clear();
@@ -66,7 +66,7 @@ class _StringBufferImpl implements StringBuffer {
}
/// Adds all items in [objects] to the buffer.
- void addAll(Collection objects) {
+ void addAll(Iterable objects) {
for (Object obj in objects) add(obj);
}
« no previous file with comments | « sdk/lib/core/string.dart ('k') | sdk/lib/core/strings.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698