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

Unified Diff: dart/tests/compiler/dart2js_extra/super_constructor1_test.dart

Issue 10558025: Fix build breakage. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 6 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: dart/tests/compiler/dart2js_extra/super_constructor1_test.dart
diff --git a/dart/tests/compiler/dart2js_extra/super_constructor1_test.dart b/dart/tests/compiler/dart2js_extra/super_constructor1_test.dart
index 665b68b0d3b8de4fc659e419e9635f5819e97b6e..49ce5c544282d78186cb96d0d780c2595d4862e0 100644
--- a/dart/tests/compiler/dart2js_extra/super_constructor1_test.dart
+++ b/dart/tests/compiler/dart2js_extra/super_constructor1_test.dart
@@ -7,21 +7,21 @@ String message;
class A {
int x;
A(i) : x = i {
- message += 'A($i)';
+ message = '${message}A($i)';
}
}
class B extends A {
int y;
B(i) : y = i++, super(i + 5) {
- message += 'B($i)';
+ message = '${message}B($i)';
}
}
class C extends B {
var z;
C(i) : super(i * 3), z = i {
- message += 'C($i)';
+ message = '${message}C($i)';
}
}
« no previous file with comments | « dart/tests/compiler/dart2js_extra/string_escape_test.dart ('k') | dart/tests/compiler/dart2js_extra/to_string_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698