| 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 50c2b8fd8d82224e55698b46d39de32378ca1396..a5337319fa1a55121a7125d8a9d46c7279bfde45 100644
|
| --- a/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| +++ b/pkg/analysis_server/test/services/completion/completion_test_util.dart
|
| @@ -4224,6 +4224,14 @@ abstract class AbstractSelectorSuggestionTest extends AbstractCompletionTest {
|
| });
|
| }
|
|
|
| + test_localVariableDeclarationName() {
|
| + addTestSource('main() {String m^}');
|
| + return computeFull((bool result) {
|
| + assertNotSuggested('main');
|
| + assertNotSuggested('min');
|
| + });
|
| + }
|
| +
|
| test_PrefixedIdentifier_trailingStmt_param2() {
|
| // SimpleIdentifier PrefixedIdentifier ExpressionStatement
|
| addTestSource('f(String g) {g.^ int y = 0;}');
|
|
|