| Index: pkg/analysis_server/lib/plugin/navigation.dart
|
| diff --git a/pkg/analysis_server/lib/plugin/completion.dart b/pkg/analysis_server/lib/plugin/navigation.dart
|
| similarity index 56%
|
| copy from pkg/analysis_server/lib/plugin/completion.dart
|
| copy to pkg/analysis_server/lib/plugin/navigation.dart
|
| index 8fd6159b783a5672789c4521456e242423ad3556..23603f06f64e87eb893e38918fa0abc430d1f97d 100644
|
| --- a/pkg/analysis_server/lib/plugin/completion.dart
|
| +++ b/pkg/analysis_server/lib/plugin/navigation.dart
|
| @@ -3,20 +3,20 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| /**
|
| - * Support for client code that extends the analysis server by adding new code
|
| - * completion contributors.
|
| + * Support for client code that extends the analysis server by adding new
|
| + * navigation contributors.
|
| */
|
| -library analysis_server.plugin.completion;
|
| +library analysis_server.plugin.navigation;
|
|
|
| -import 'package:analysis_server/completion/completion_core.dart';
|
| +import 'package:analysis_server/analysis/navigation/navigation_core.dart';
|
| import 'package:analysis_server/src/plugin/server_plugin.dart';
|
| import 'package:plugin/plugin.dart';
|
|
|
| /**
|
| - * The identifier of the extension point that allows plugins to register code
|
| - * completion contributors. The object used as an extension must be a
|
| - * [CompletionContributor].
|
| + * The identifier of the extension point that allows plugins to register
|
| + * navigation contributors. The object used as an extension must be
|
| + * a [NavigationContributor].
|
| */
|
| -final String COMPLETION_CONTRIBUTOR_EXTENSION_POINT_ID = Plugin.join(
|
| +final String NAVIGATION_CONTRIBUTOR_EXTENSION_POINT_ID = Plugin.join(
|
| ServerPlugin.UNIQUE_IDENTIFIER,
|
| - ServerPlugin.COMPLETION_CONTRIBUTOR_EXTENSION_POINT);
|
| + ServerPlugin.NAVIGATION_CONTRIBUTOR_EXTENSION_POINT);
|
|
|