| 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 47399376743c25f4f87803cdcb05259c7b5df3a3..fed9d0fd324c959561a761e7edfc11c83236e251 100644
|
| --- a/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| @@ -194,6 +194,15 @@ void main() {
|
| assertNotSuggested('x');
|
| }
|
|
|
| + test_overrides() {
|
| + addTestSource('''
|
| +class A {m() {}}
|
| +class B extends A {m() {^}}
|
| +''');
|
| + expect(computeFast(), isTrue);
|
| + assertSuggestMethod('m', 'B', null, relevance: DART_RELEVANCE_LOCAL_METHOD);
|
| + }
|
| +
|
| test_break_ignores_unrelated_statements() {
|
| addTestSource('''
|
| void main() {
|
|
|