| Index: pkg/analysis_server/test/services/completion/arglist_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/arglist_contributor_test.dart b/pkg/analysis_server/test/services/completion/arglist_contributor_test.dart
|
| index 433448b154169f98fe82308a62ca7d0c862ce6e9..959b027284f2168df6776527ebbf384f45e31274 100644
|
| --- a/pkg/analysis_server/test/services/completion/arglist_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/arglist_contributor_test.dart
|
| @@ -90,6 +90,17 @@ class ArgListContributorTest extends AbstractCompletionTest {
|
| contributor = new ArgListContributor();
|
| }
|
|
|
| + test_Annotation_local_constructor_named_param() {
|
| + //
|
| + addTestSource('''
|
| +class A { A({int one, String two: 'defaultValue'}) { } }
|
| +@A(^) main() { }''');
|
| + computeFast();
|
| + return computeFull((bool result) {
|
| + assertSuggestArguments(namedArguments: ['one', 'two']);
|
| + });
|
| + }
|
| +
|
| test_ArgumentList_getter() {
|
| addTestSource('class A {int get foo => 7; main() {foo(^)}');
|
| computeFast();
|
|
|