| Index: pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/local_computer_test.dart b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| index 0a8cc55288c9e729835092041346b77d6357a2e9..c8048795f591e864d0adde018a5575a7d48cf4a5 100644
|
| --- a/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| @@ -24,24 +24,6 @@ class LocalComputerTest extends AbstractSelectorSuggestionTest {
|
| computer = new LocalComputer();
|
| }
|
|
|
| - test_BinaryExpression_LHS() {
|
| - // SimpleIdentifier BinaryExpression VariableDeclaration
|
| - // VariableDeclarationList VariableDeclarationStatement
|
| - addTestSource('main() {int a = 1, b = ^ + 2;}');
|
| - expect(computeFast(), isTrue);
|
| - assertSuggestLocalVariable('a', 'int');
|
| - assertNotSuggested('b');
|
| - }
|
| -
|
| - test_BinaryExpression_RHS() {
|
| - // SimpleIdentifier BinaryExpression VariableDeclaration
|
| - // VariableDeclarationList VariableDeclarationStatement
|
| - addTestSource('main() {int a = 1, b = 2 + ^;}');
|
| - expect(computeFast(), isTrue);
|
| - assertSuggestLocalVariable('a', 'int');
|
| - assertNotSuggested('b');
|
| - }
|
| -
|
| test_CatchClause_typed() {
|
| // Block CatchClause TryStatement
|
| addTestSource('class A {a() {try{} on E catch (e) {^}}}');
|
|
|