| 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 e99f176e06955a867eb66e81dccb7e13fd361254..bbab5fbc6c51febd2a7c0e3f94c28958b592958f 100644
|
| --- a/pkg/analysis_server/test/services/completion/imported_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/imported_computer_test.dart
|
| @@ -189,16 +189,6 @@ class ImportedTypeComputerTest extends AbstractSelectorSuggestionTest {
|
| });
|
| }
|
|
|
| - test_IsExpression_local() {
|
| - // SimpleIdentifier TypeName IsExpression IfStatement
|
| - addTestSource('''
|
| - class X {X.c(); X._d(); z() {}}
|
| - main() {var x; if (x is ^) { }}''');
|
| - return computeFull().then((_) {
|
| - assertNoSuggestions();
|
| - });
|
| - }
|
| -
|
| test_PrefixedIdentifier() {
|
| // SimpleIdentifier PrefixedIdentifier ExpressionStatement
|
| addSource('/testA.dart', '''
|
| @@ -309,23 +299,6 @@ class ImportedTypeComputerTest extends AbstractSelectorSuggestionTest {
|
| });
|
| }
|
|
|
| - xtest_IsExpression_imported() {
|
| - // SimpleIdentifier TypeName IsExpression IfStatement
|
| - addSource('/testB.dart', '''
|
| - lib B;
|
| - class X {X.c(); X._d(); z() {}}''');
|
| - addTestSource('''
|
| - import "/testB.dart";
|
| - main() {var x; if (x is ^) { }}''');
|
| - return computeFull().then((_) {
|
| - assertSuggestConstructor('c');
|
| - assertNotSuggested('main');
|
| - assertNotSuggested('X');
|
| - assertNotSuggested('B');
|
| - assertNotSuggested('x');
|
| - });
|
| - }
|
| -
|
| xtest_VariableDeclarationStatement_RHS() {
|
| // SimpleIdentifier VariableDeclaration VariableDeclarationList
|
| // VariableDeclarationStatement
|
|
|