| Index: pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| diff --git a/pkg/analyzer/test/src/summary/resynthesize_test.dart b/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| index e3fddc6b2598d25cf6319cf6e1532f5844dbc0c1..2ea78c676c3f0f735b2d6f7bb81e8b18ea625659 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| @@ -991,6 +991,14 @@ get x => null;''');
|
| checkLibrary('int get x => null; get y => null;');
|
| }
|
|
|
| + test_implicitTopLevelVariable_getterFirst() {
|
| + checkLibrary('int get x => 0; void set x(int value) {}');
|
| + }
|
| +
|
| + test_implicitTopLevelVariable_setterFirst() {
|
| + checkLibrary('void set x(int value) {} int get x => 0;');
|
| + }
|
| +
|
| test_import_hide() {
|
| addLibrary('dart:async');
|
| checkLibrary('import "dart:async" hide Stream, Completer; Future f;');
|
|
|