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

Unified Diff: compiler/javatests/com/google/dart/compiler/backend/js/testConstructorOptTest.dart

Issue 9169013: Issue 1099: Compile time error for RHS this access in initializer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Failing JUnit opt test Created 8 years, 11 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: compiler/javatests/com/google/dart/compiler/backend/js/testConstructorOptTest.dart
diff --git a/compiler/javatests/com/google/dart/compiler/backend/js/testConstructorOptTest.dart b/compiler/javatests/com/google/dart/compiler/backend/js/testConstructorOptTest.dart
index 850b3d90c77ebd42434e122b923d80329a3c4fe5..3e019404ae6f50cbd2326e45c4b083b46d18b6ed 100644
--- a/compiler/javatests/com/google/dart/compiler/backend/js/testConstructorOptTest.dart
+++ b/compiler/javatests/com/google/dart/compiler/backend/js/testConstructorOptTest.dart
@@ -19,7 +19,7 @@ class BBB {
class CCC extends BBB {
int d;
- CCC(this.d) : super(this.d) { }
+ CCC(x) : d = x, super(x) { }
}
class DDD {

Powered by Google App Engine
This is Rietveld 408576698