| 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 3cd9d6785cad92601e070605c733eec9ddacf6ec..7f4c2091f3895690a813a9e297da44a5af152c49 100644
|
| --- a/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
|
| @@ -399,7 +399,7 @@ void main() {C.^ print("something");}''');
|
| check_shadowing('int x;', 'set x(int value) {}', true);
|
|
|
| test_shadowing_getter_over_field() =>
|
| - check_shadowing('int get x => null;', 'int x;', false);
|
| + check_shadowing('int get x => null;', 'int x;', true);
|
|
|
| test_shadowing_getter_over_getter() =>
|
| check_shadowing('int get x => null;', 'int get x => null;', true);
|
| @@ -408,7 +408,7 @@ void main() {C.^ print("something");}''');
|
| check_shadowing('int get x => null;', 'void x() {}', true);
|
|
|
| test_shadowing_getter_over_setter() =>
|
| - check_shadowing('int get x => null;', 'set x(int value) {}', false);
|
| + check_shadowing('int get x => null;', 'set x(int value) {}', true);
|
|
|
| test_shadowing_method_over_field() =>
|
| check_shadowing('void x() {}', 'int x;', true);
|
| @@ -468,10 +468,10 @@ void test(Derived d) {
|
| }
|
|
|
| test_shadowing_setter_over_field() =>
|
| - check_shadowing('set x(int value) {}', 'int x;', false);
|
| + check_shadowing('set x(int value) {}', 'int x;', true);
|
|
|
| test_shadowing_setter_over_getter() =>
|
| - check_shadowing('set x(int value) {}', 'int get x => null;', false);
|
| + check_shadowing('set x(int value) {}', 'int get x => null;', true);
|
|
|
| test_shadowing_setter_over_method() =>
|
| check_shadowing('set x(int value) {}', 'void x() {}', true);
|
|
|