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

Unified Diff: tools/test.dart

Issue 12295014: Remove deprecated Strings class. (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
« no previous file with comments | « tools/dom/templates/html/impl/impl_SVGElement.darttemplate ('k') | tools/test-runtime.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 12cff100c5a64c6acbc267704e242cb41a0f82d5..1f88fd7c3534bbefd82c0724e995c732f00761d2 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -104,9 +104,9 @@ main() {
List settings = ['compiler', 'runtime', 'mode', 'arch']
.mappedBy((name) => conf[name]).toList();
if (conf['checked']) settings.add('checked');
- output_words.add(Strings.join(settings, '_'));
+ output_words.add(settings.join('_'));
}
- print(Strings.join(output_words, ' '));
+ print(output_words.join(' '));
}
// Start global http servers that serve the entire dart repo.
« no previous file with comments | « tools/dom/templates/html/impl/impl_SVGElement.darttemplate ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698