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

Unified Diff: tools/testing/dart/multitest.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/testing/dart/multitest.dart
diff --git a/tools/testing/dart/multitest.dart b/tools/testing/dart/multitest.dart
index 585502c298e26c49677de6412a03d113da8f2fd9..b9596bfc5f47aaea68242ba0f717e7985d02da39 100644
--- a/tools/testing/dart/multitest.dart
+++ b/tools/testing/dart/multitest.dart
@@ -122,7 +122,7 @@ void ExtractTestsFromMultitest(Path filePath,
// Copy all the tests into the output map tests, as multiline strings.
for (String key in testsAsLines.keys) {
- tests[key] = testsAsLines[key].join(line_separator).concat(line_separator);
+ tests[key] = testsAsLines[key].join(line_separator) + line_separator;
floitsch 2013/03/08 23:46:48 Are you sure this works already now? Usually tools
Lasse Reichstein Nielsen 2013/03/12 11:43:12 Ack, will revert. Apparently this isn't hit throug
}
}

Powered by Google App Engine
This is Rietveld 408576698