OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 analysis_server.src.provisional.completion.dart.plugin; | |
6 | |
7 import 'package:analysis_server/src/provisional/completion/completion.dart'; | 5 import 'package:analysis_server/src/provisional/completion/completion.dart'; |
8 import 'package:analysis_server/src/provisional/completion/dart/completion.dart'
; | 6 import 'package:analysis_server/src/provisional/completion/dart/completion.dart'
; |
9 import 'package:analysis_server/src/provisional/completion/dart/completion_dart.
dart'; | 7 import 'package:analysis_server/src/provisional/completion/dart/completion_dart.
dart'; |
10 import 'package:analysis_server/src/services/completion/dart/arglist_contributor
.dart'; | 8 import 'package:analysis_server/src/services/completion/dart/arglist_contributor
.dart'; |
11 import 'package:analysis_server/src/services/completion/dart/combinator_contribu
tor.dart'; | 9 import 'package:analysis_server/src/services/completion/dart/combinator_contribu
tor.dart'; |
12 import 'package:analysis_server/src/services/completion/dart/completion_manager.
dart'; | 10 import 'package:analysis_server/src/services/completion/dart/completion_manager.
dart'; |
13 import 'package:analysis_server/src/services/completion/dart/field_formal_contri
butor.dart'; | 11 import 'package:analysis_server/src/services/completion/dart/field_formal_contri
butor.dart'; |
14 import 'package:analysis_server/src/services/completion/dart/imported_reference_
contributor.dart'; | 12 import 'package:analysis_server/src/services/completion/dart/imported_reference_
contributor.dart'; |
15 import 'package:analysis_server/src/services/completion/dart/inherited_reference
_contributor.dart'; | 13 import 'package:analysis_server/src/services/completion/dart/inherited_reference
_contributor.dart'; |
16 import 'package:analysis_server/src/services/completion/dart/keyword_contributor
.dart'; | 14 import 'package:analysis_server/src/services/completion/dart/keyword_contributor
.dart'; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, | 112 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, |
115 () => new StaticMemberContributor()); | 113 () => new StaticMemberContributor()); |
116 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, | 114 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, |
117 () => new TypeMemberContributor()); | 115 () => new TypeMemberContributor()); |
118 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, | 116 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, |
119 () => new UriContributor()); | 117 () => new UriContributor()); |
120 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, | 118 registerExtension(DART_COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID, |
121 () => new VariableNameContributor()); | 119 () => new VariableNameContributor()); |
122 } | 120 } |
123 } | 121 } |
OLD | NEW |