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

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: Address comments. Created 7 years, 9 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 | « tests/standalone/package/packages/lib3/sub/lib3.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « tests/standalone/package/packages/lib3/sub/lib3.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698