| 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 {
|
|
|