| 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 0d34907f76ebe2d1428fc0a73d4bbc82ac54b4fa..bc8153f2a13d540c6a8780735c3b0b6484a1b2d7 100644
|
| --- a/pkg/analysis_server/test/services/completion/arglist_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/arglist_contributor_test.dart
|
| @@ -23,6 +23,14 @@ class ArgListContributorTest extends AbstractCompletionTest {
|
| contributor = new ArgListContributor();
|
| }
|
|
|
| + test_ArgumentList_getter() {
|
| + addTestSource('class A {int get foo => 7; main() {foo(^)}');
|
| + computeFast();
|
| + return computeFull((bool result) {
|
| + assertNoSuggestions(kind: CompletionSuggestionKind.ARGUMENT_LIST);
|
| + });
|
| + }
|
| +
|
| test_ArgumentList_imported_function_0() {
|
| // ArgumentList MethodInvocation ExpressionStatement Block
|
| addSource('/libA.dart', '''
|
|
|