| Index: tests/compiler/dart2js/unparser_test.dart
|
| diff --git a/tests/compiler/dart2js/unparser_test.dart b/tests/compiler/dart2js/unparser_test.dart
|
| index ac7e7a46394116ccefbbc85ee22c62c347ec10c7..3c37a8512fb7c83e5e4ec431ce90be7e705c0ca4 100644
|
| --- a/tests/compiler/dart2js/unparser_test.dart
|
| +++ b/tests/compiler/dart2js/unparser_test.dart
|
| @@ -31,6 +31,10 @@ testEmptyList() {
|
| testUnparse('var x= [];');
|
| }
|
|
|
| +testClosure() {
|
| + testUnparse('var x=(var x)=> x;');
|
| +}
|
| +
|
| testIndexedOperatorDecl() {
|
| testUnparseMember('operator[](int i)=> null;');
|
| }
|
| @@ -39,5 +43,6 @@ main() {
|
| testGenericTypes();
|
| testForLoop();
|
| testEmptyList();
|
| + testClosure();
|
| testIndexedOperatorDecl();
|
| }
|
|
|