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

Unified Diff: tests/language/constructor7_test.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/language/constructor4_test.dart ('k') | tests/language/constructor_named_arguments_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/constructor7_test.dart
diff --git a/tests/language/constructor7_test.dart b/tests/language/constructor7_test.dart
index 1d963949948cda273082dff0c84809d1cdb76ebd..25468f80f15801870f59be91a1cf76e384c8e64e 100644
--- a/tests/language/constructor7_test.dart
+++ b/tests/language/constructor7_test.dart
@@ -11,7 +11,7 @@
String trace = "";
int E(int i) {
- trace = trace.concat("$i-");
+ trace += "$i-";
return i;
}
« no previous file with comments | « tests/language/constructor4_test.dart ('k') | tests/language/constructor_named_arguments_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698