| 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 e0cd68727f0100553a4cfbabbc8bcef5a5ec3a90..69a8e3e499a581a7ad58ca0d81607834c5205deb 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| @@ -1724,6 +1724,24 @@ const v = const {0: 'aaa', 1: 'bbb', 2: 'ccc'};
|
| ''');
|
| }
|
|
|
| + test_constExpr_pushReference_field_simpleIdentifier() {
|
| + checkLibrary('''
|
| +class C {
|
| + static const a = b;
|
| + static const b = null;
|
| +}
|
| +''');
|
| + }
|
| +
|
| + test_constExpr_pushReference_staticMethod_simpleIdentifier() {
|
| + checkLibrary('''
|
| +class C {
|
| + static const a = m;
|
| + static m() {}
|
| +}
|
| +''');
|
| + }
|
| +
|
| test_constructor_documented() {
|
| checkLibrary('''
|
| class C {
|
|
|