| Index: tests/language/src/ParameterInitializerTest.dart
|
| ===================================================================
|
| --- tests/language/src/ParameterInitializerTest.dart (revision 5447)
|
| +++ tests/language/src/ParameterInitializerTest.dart (working copy)
|
| @@ -20,7 +20,7 @@
|
| obj = new Foo.optional();
|
| Expect.equals(5, obj.x);
|
|
|
| - obj = new Foo.optional_private(y: 222);
|
| + obj = new Foo.optional_private(_y: 222);
|
| Expect.equals(222, obj._y);
|
|
|
| obj = new Foo.optional_private();
|
| @@ -48,7 +48,7 @@
|
| Foo.supertype(Object this.x) {}
|
| Foo.subtype(int this.x) {}
|
| Foo.optional([this.x = 5]) {}
|
| - Foo.optional_private([y = 77]) : _y = y {}
|
| + Foo.optional_private([this._y = 77]) {}
|
|
|
| num x;
|
| num _y;
|
|
|