| 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 e0aca465003f1c90b863f396b26ce62fe5834e42..39dcccef84e67c778a7ad45e9da44ddeaf61307b 100644
|
| --- a/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/local_computer_test.dart
|
| @@ -149,6 +149,21 @@ class C extends B with M1, M2 {
|
| computer = new LocalComputer();
|
| }
|
|
|
| + test_missing_params_function() {
|
| + addTestSource('int f1{} main(){f^}');
|
| + expect(computeFast(), isTrue);
|
| + }
|
| +
|
| + test_missing_params_method() {
|
| + addTestSource('class C1{int f1{} main(){f^}}');
|
| + expect(computeFast(), isTrue);
|
| + }
|
| +
|
| + test_missing_params_constructor() {
|
| + addTestSource('class C1{C1{} main(){C^}}');
|
| + expect(computeFast(), isTrue);
|
| + }
|
| +
|
| test_break_ignores_outer_functions_using_closure() {
|
| addTestSource('''
|
| void main() {
|
|
|