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

Unified Diff: tests/compiler/dart2js_extra/to_string_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/compiler/dart2js_extra/bailout_test.dart ('k') | tests/corelib/collection_length_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js_extra/to_string_test.dart
diff --git a/tests/compiler/dart2js_extra/to_string_test.dart b/tests/compiler/dart2js_extra/to_string_test.dart
index ee28afe01be7b16a943164fd4120356db649d327..02275348fd371fd3963e955dfd87d3c753938434 100644
--- a/tests/compiler/dart2js_extra/to_string_test.dart
+++ b/tests/compiler/dart2js_extra/to_string_test.dart
@@ -9,7 +9,7 @@ class Concater {
final x;
final y;
Concater(x, y) : this.x = x, this.y = y;
- add() => x.concat(y.toString());
+ add() => x + y.toString();
}
test(expected, x) {
« no previous file with comments | « tests/compiler/dart2js_extra/bailout_test.dart ('k') | tests/corelib/collection_length_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698