| Index: pkg/analysis_server/test/services/completion/invocation_computer_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/invocation_computer_test.dart b/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
|
| index 48f2f8470bac2f95e1be4b85600e450b04df9f04..c3ff27357f0433b2f1d1b6d2c63b0d42c4f4674a 100644
|
| --- a/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
|
| @@ -5,7 +5,6 @@
|
| library test.services.completion.invocation;
|
|
|
|
|
| -import 'package:analysis_server/src/protocol.dart';
|
| import 'package:analysis_server/src/services/completion/invocation_computer.dart';
|
| import 'package:unittest/unittest.dart';
|
|
|
| @@ -26,39 +25,6 @@ class InvocationComputerTest extends AbstractSelectorSuggestionTest {
|
| computer = new InvocationComputer();
|
| }
|
|
|
| - test_ConstructorName_importedClass() {
|
| - // SimpleIdentifier PrefixedIdentifier TypeName ConstructorName
|
| - // InstanceCreationExpression
|
| - addSource('/testB.dart', '''
|
| - lib B;
|
| - class X {X.c(); X._d(); z() {}}''');
|
| - addTestSource('''
|
| - import "/testB.dart";
|
| - var m;
|
| - main() {new X.^}''');
|
| - return computeFull().then((_) {
|
| - assertSuggest(CompletionSuggestionKind.CONSTRUCTOR, 'c');
|
| - assertNotSuggested('_d');
|
| - assertNotSuggested('z');
|
| - assertNotSuggested('m');
|
| - });
|
| - }
|
| -
|
| - test_ConstructorName_localClass() {
|
| - // SimpleIdentifier PrefixedIdentifier TypeName ConstructorName
|
| - // InstanceCreationExpression
|
| - addTestSource('''
|
| - var m;
|
| - class X {X.c(); X._d(); z() {}}
|
| - main() {new X.^}''');
|
| - return computeFull().then((_) {
|
| - assertSuggest(CompletionSuggestionKind.CONSTRUCTOR, 'c');
|
| - assertSuggest(CompletionSuggestionKind.CONSTRUCTOR, '_d');
|
| - assertNotSuggested('z');
|
| - assertNotSuggested('m');
|
| - });
|
| - }
|
| -
|
| test_PrefixedIdentifier_field() {
|
| // SimpleIdentifier PrefixedIdentifier ExpressionStatement
|
| addTestSource('''
|
|
|