| Index: pkg/analysis_server/test/services/completion/dart/local_reference_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/dart/local_reference_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/local_reference_contributor_test.dart
|
| index 8e72635c53cb398b1ceec61dcc88823293afe3cc..81eba2939159bfb94af4e9d248bfc2f55d92f39b 100644
|
| --- a/pkg/analysis_server/test/services/completion/dart/local_reference_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/local_reference_contributor_test.dart
|
| @@ -258,6 +258,7 @@ class B extends A {
|
| main(aaa, bbb) {}''');
|
| await computeSuggestions();
|
| assertSuggestFunction('main', null,
|
| + kind: CompletionSuggestionKind.IDENTIFIER,
|
| relevance: DART_RELEVANCE_LOCAL_FUNCTION);
|
| }
|
|
|
| @@ -267,6 +268,7 @@ main(aaa, bbb) {}''');
|
| main(aaa, bbb) {}''');
|
| await computeSuggestions();
|
| assertSuggestFunction('main', null,
|
| + kind: CompletionSuggestionKind.IDENTIFIER,
|
| relevance: DART_RELEVANCE_LOCAL_FUNCTION);
|
| }
|
|
|
|
|