| Index: pkg/analysis_server/test/services/completion/imported_computer_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/imported_computer_test.dart b/pkg/analysis_server/test/services/completion/imported_computer_test.dart
|
| index ad056611beef8e5c84b8c0c1d164626545fc193e..0c258f03f371d76e2458e1b96561385e2a880c3f 100644
|
| --- a/pkg/analysis_server/test/services/completion/imported_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/imported_computer_test.dart
|
| @@ -162,41 +162,6 @@ class ImportedTypeComputerTest extends AbstractSelectorSuggestionTest {
|
| });
|
| }
|
|
|
| - test_PrefixedIdentifier() {
|
| - // SimpleIdentifier PrefixedIdentifier ExpressionStatement
|
| - addSource('/testA.dart', '''
|
| - class A() {int x;}
|
| - _B() {}''');
|
| - addTestSource('''
|
| - import "/testA.dart";
|
| - class X {foo(){A a; a.^}}''');
|
| - return computeFull().then((_) {
|
| - // InvocationComputer provides suggestions for prefixed expressions
|
| - assertNotSuggested('A');
|
| - assertNotSuggested('x');
|
| - assertNotSuggested('X');
|
| - assertNotSuggested('Object');
|
| - });
|
| - }
|
| -
|
| - test_PrefixedIdentifier_prefix() {
|
| - // SimpleIdentifier PrefixedIdentifier ExpressionStatement
|
| - addSource('/testA.dart', '''
|
| - class A {static int bar = 10;}
|
| - _B() {}''');
|
| - addTestSource('''
|
| - import "/testA.dart";
|
| - class X {foo(){A^.bar}}''');
|
| - return computeFull().then((_) {
|
| - // InvocationComputer provides suggestions for prefixed expressions
|
| - assertSuggestClass('A');
|
| - assertNotSuggested('bar');
|
| - assertNotSuggested('_B');
|
| - assertNotSuggested('X');
|
| - assertNotSuggested('foo');
|
| - });
|
| - }
|
| -
|
| test_ShowCombinator_class() {
|
| // SimpleIdentifier ShowCombinator ImportDirective
|
| addSource('/testAB.dart', '''
|
| @@ -217,28 +182,4 @@ class ImportedTypeComputerTest extends AbstractSelectorSuggestionTest {
|
| assertNotSuggested('Object');
|
| });
|
| }
|
| -
|
| - test_TopLevelVariableDeclaration_name() {
|
| - // SimpleIdentifier VariableDeclaration VariableDeclarationList
|
| - // TopLevelVariableDeclaration
|
| - addSource('/testA.dart', 'class B { };');
|
| - addTestSource('''
|
| - import "/testA.dart";
|
| - class C {} B ^''');
|
| - return computeFull().then((_) {
|
| - assertNotSuggested('B');
|
| - });
|
| - }
|
| -
|
| - test_TopLevelVariableDeclaration_name_untyped() {
|
| - // SimpleIdentifier VariableDeclaration VariableDeclarationList
|
| - // TopLevelVariableDeclaration
|
| - addSource('/testA.dart', 'class B { };');
|
| - addTestSource('''
|
| - import "/testA.dart";
|
| - class C {} var ^''');
|
| - return computeFull().then((_) {
|
| - assertNotSuggested('B');
|
| - });
|
| - }
|
| }
|
|
|