| Index: dart/tests/compiler/dart2js_extra/closure7_test.dart
|
| diff --git a/dart/tests/compiler/dart2js_extra/closure7_test.dart b/dart/tests/compiler/dart2js_extra/closure7_test.dart
|
| index 6c29c24bd50d306da878c33b82dde993a7e5ce6c..7722bbe4a328bfac91e77d624a227bf94cb1afdd 100644
|
| --- a/dart/tests/compiler/dart2js_extra/closure7_test.dart
|
| +++ b/dart/tests/compiler/dart2js_extra/closure7_test.dart
|
| @@ -6,7 +6,7 @@ var foo;
|
| bar() => foo(3, 99);
|
| gee(f) => foo(fun: f);
|
|
|
| -get foo2() => foo;
|
| +get foo2 => foo;
|
| bar2() => foo2(3, 99);
|
| gee2(f) => foo2(fun: f);
|
|
|
| @@ -31,7 +31,7 @@ class A {
|
| static bar() => foo(3, 99);
|
| static gee(f) => foo(fun: f);
|
|
|
| - static get foo2() => foo;
|
| + static get foo2 => foo;
|
| static bar2() => foo2(3, 99);
|
| static gee2(f) => foo2(fun: f);
|
| }
|
|
|