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

Unified Diff: tools/ddbg.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: tools/ddbg.dart
diff --git a/tools/ddbg.dart b/tools/ddbg.dart
index 2295ae8b848a18da5b1cd8a883faf96466288337..6a557ab8f9e615f4d1207049d14e7dfb5990c54e 100644
--- a/tools/ddbg.dart
+++ b/tools/ddbg.dart
@@ -454,7 +454,7 @@ void processVmData(String data) {
if (vmData == null || vmData.length == 0) {
vmData = data;
} else {
- vmData = vmData.concat(data);
+ vmData = vmData + data;
}
int msg_len = jsonObjectLength(vmData);
if (printMessages && msg_len == 0) {

Powered by Google App Engine
This is Rietveld 408576698