Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(878)

Unified Diff: pkg/analysis_server/lib/plugin/index.dart

Issue 1060063008: Add API for contributing to the index (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/plugin/index.dart
diff --git a/pkg/analysis_server/lib/plugin/fix.dart b/pkg/analysis_server/lib/plugin/index.dart
similarity index 61%
copy from pkg/analysis_server/lib/plugin/fix.dart
copy to pkg/analysis_server/lib/plugin/index.dart
index a89b84738cb5957ee1afd190df31dd8553c88791..a6af762dbfa78bfd4a4e1ed69d0d6a67c3ac19b4 100644
--- a/pkg/analysis_server/lib/plugin/fix.dart
+++ b/pkg/analysis_server/lib/plugin/index.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 fix
+ * Support for client code that extends the analysis server by adding new index
* contributors.
*/
-library analysis_server.plugin.fix;
+library analysis_server.plugin.index;
-import 'package:analysis_server/edit/fix/fix_core.dart';
+import 'package:analysis_server/analysis/index/index_core.dart';
import 'package:analysis_server/src/plugin/server_plugin.dart';
import 'package:analyzer/plugin/plugin.dart';
/**
* The identifier of the extension point that allows plugins to register new
- * fix contributors with the server. The object used as an extension must be a
- * [FixContributor].
+ * index contributors with the server. The object used as an extension must be
+ * an [IndexContributor].
*/
-final String FIX_CONTRIBUTOR_EXTENSION_POINT_ID = Plugin.join(
+final String INDEX_CONTRIBUTOR_EXTENSION_POINT_ID = Plugin.join(
ServerPlugin.UNIQUE_IDENTIFIER,
- ServerPlugin.FIX_CONTRIBUTOR_EXTENSION_POINT);
+ ServerPlugin.INDEX_CONTRIBUTOR_EXTENSION_POINT);

Powered by Google App Engine
This is Rietveld 408576698