| 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 /** | 5 /** |
| 6 * Support for client code that extends the analysis server by adding new index | 6 * Support for client code that extends the analysis server by adding new index |
| 7 * contributors. | 7 * contributors. |
| 8 * | 8 * |
| 9 * Plugins can register index contributors. The registered contributors will be | 9 * Plugins can register index contributors. The registered contributors will be |
| 10 * used to contribute relationships to the index when the analysis of a file has | 10 * used to contribute relationships to the index when the analysis of a file has |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * void registerExtensions(RegisterExtension registerExtension) { | 23 * void registerExtensions(RegisterExtension registerExtension) { |
| 24 * ... | 24 * ... |
| 25 * registerExtension( | 25 * registerExtension( |
| 26 * INDEX_CONTRIBUTOR_EXTENSION_POINT_ID, | 26 * INDEX_CONTRIBUTOR_EXTENSION_POINT_ID, |
| 27 * new MyIndexContributor()); | 27 * new MyIndexContributor()); |
| 28 * ... | 28 * ... |
| 29 * } | 29 * } |
| 30 */ | 30 */ |
| 31 library analysis_server.plugin.index; | 31 library analysis_server.plugin.index; |
| 32 | 32 |
| 33 import 'package:analysis_server/analysis/index/index_core.dart'; | 33 import 'package:analysis_server/analysis/index_core.dart'; |
| 34 import 'package:analysis_server/src/plugin/server_plugin.dart'; | 34 import 'package:analysis_server/src/plugin/server_plugin.dart'; |
| 35 import 'package:plugin/plugin.dart'; | 35 import 'package:plugin/plugin.dart'; |
| 36 | 36 |
| 37 /** | 37 /** |
| 38 * The identifier of the extension point that allows plugins to register index | 38 * The identifier of the extension point that allows plugins to register index |
| 39 * contributors. The object used as an extension must be an [IndexContributor]. | 39 * contributors. The object used as an extension must be an [IndexContributor]. |
| 40 */ | 40 */ |
| 41 final String INDEX_CONTRIBUTOR_EXTENSION_POINT_ID = Plugin.join( | 41 final String INDEX_CONTRIBUTOR_EXTENSION_POINT_ID = Plugin.join( |
| 42 ServerPlugin.UNIQUE_IDENTIFIER, | 42 ServerPlugin.UNIQUE_IDENTIFIER, |
| 43 ServerPlugin.INDEX_CONTRIBUTOR_EXTENSION_POINT); | 43 ServerPlugin.INDEX_CONTRIBUTOR_EXTENSION_POINT); |
| OLD | NEW |