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

Unified Diff: tests/standalone/debugger/debug_lib.dart

Issue 12441003: Rename String.concat to operator+. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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: tests/standalone/debugger/debug_lib.dart
diff --git a/tests/standalone/debugger/debug_lib.dart b/tests/standalone/debugger/debug_lib.dart
index d71f3e64310b34dbbbcba321bd880e2431c1cc80..67888994035345f274130ecfcde92c028dee56e7 100644
--- a/tests/standalone/debugger/debug_lib.dart
+++ b/tests/standalone/debugger/debug_lib.dart
@@ -29,7 +29,7 @@ class JsonBuffer {
if (buffer == null || buffer.length == 0) {
buffer = s;
} else {
- buffer = buffer.concat(s);
+ buffer += s;
}
}

Powered by Google App Engine
This is Rietveld 408576698