| Index: pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/completion_test_util.dart b/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| index 8edd4869cfd8f5e7988aaefb8767a6f5f25644d3..50c2b8fd8d82224e55698b46d39de32378ca1396 100644
|
| --- a/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| +++ b/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| @@ -3771,6 +3771,14 @@ abstract class AbstractSelectorSuggestionTest extends AbstractCompletionTest {
|
| });
|
| }
|
|
|
| + test_parameterName_excludeTypes() {
|
| + addTestSource('m(int ^) {}');
|
| + return computeFull((bool result) {
|
| + assertNotSuggested('int');
|
| + assertNotSuggested('bool');
|
| + });
|
| + }
|
| +
|
| test_partFile_TypeName() {
|
| // SimpleIdentifier TypeName ConstructorName
|
| addSource(
|
|
|