| 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 ccd2deb19e500377d5b7e3c9a893b292007a813f..30221bbb44035021ba59859241b174d00d6c9b02 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| @@ -2513,6 +2513,15 @@ class C {
|
| ''');
|
| }
|
|
|
| + test_constructor_initializers_thisInvocation_namedExpression() {
|
| + checkLibrary('''
|
| +class C {
|
| + const C() : this.named(1, b: 2);
|
| + const C.named(a, {int b});
|
| +}
|
| +''');
|
| + }
|
| +
|
| test_constructor_initializers_thisInvocation_unnamed() {
|
| checkLibrary('''
|
| class C {
|
|
|