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

Unified Diff: sdk/lib/_internal/compiler/implementation/code_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
Index: sdk/lib/_internal/compiler/implementation/code_buffer.dart
diff --git a/sdk/lib/_internal/compiler/implementation/code_buffer.dart b/sdk/lib/_internal/compiler/implementation/code_buffer.dart
index b3b48525677f24c10eabbeb353f3d15ce944678d..c3465e8783cec69dd3ac6deea2eea9a8d98de952 100644
--- a/sdk/lib/_internal/compiler/implementation/code_buffer.dart
+++ b/sdk/lib/_internal/compiler/implementation/code_buffer.dart
@@ -48,8 +48,8 @@ class CodeBuffer implements StringBuffer {
buffer.add(other.getText());
}
- CodeBuffer addAll(Collection<Object> objects) {
- for (Object obj in objects) {
+ CodeBuffer addAll(Iterable<Object> iterable) {
+ for (Object obj in iterable) {
add(obj);
}
return this;

Powered by Google App Engine
This is Rietveld 408576698