| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test.services.completion.dart; | |
| 6 | |
| 7 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 8 | 6 |
| 9 import 'arglist_contributor_test.dart' as arglist_test; | 7 import 'arglist_contributor_test.dart' as arglist_test; |
| 10 import 'combinator_contributor_test.dart' as combinator_test; | 8 import 'combinator_contributor_test.dart' as combinator_test; |
| 11 import 'common_usage_sorter_test.dart' as common_usage_test; | 9 import 'common_usage_sorter_test.dart' as common_usage_test; |
| 12 import 'completion_manager_test.dart' as completion_manager; | 10 import 'completion_manager_test.dart' as completion_manager; |
| 13 import 'field_formal_contributor_test.dart' as field_formal_contributor_test; | 11 import 'field_formal_contributor_test.dart' as field_formal_contributor_test; |
| 14 import 'imported_reference_contributor_test.dart' as imported_ref_test; | 12 import 'imported_reference_contributor_test.dart' as imported_ref_test; |
| 15 import 'inherited_reference_contributor_test.dart' as inherited_ref_test; | 13 import 'inherited_reference_contributor_test.dart' as inherited_ref_test; |
| 16 import 'keyword_contributor_test.dart' as keyword_test; | 14 import 'keyword_contributor_test.dart' as keyword_test; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 local_ref_test.main(); | 47 local_ref_test.main(); |
| 50 named_contributor_test.main(); | 48 named_contributor_test.main(); |
| 51 optype_test.main(); | 49 optype_test.main(); |
| 52 override_contributor_test.main(); | 50 override_contributor_test.main(); |
| 53 static_contributor_test.main(); | 51 static_contributor_test.main(); |
| 54 type_member_contributor_test.main(); | 52 type_member_contributor_test.main(); |
| 55 uri_contributor_test.main(); | 53 uri_contributor_test.main(); |
| 56 variable_name_contributor_test.main(); | 54 variable_name_contributor_test.main(); |
| 57 }, name: 'dart'); | 55 }, name: 'dart'); |
| 58 } | 56 } |
| OLD | NEW |