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

Unified Diff: pkg/analysis_server/lib/src/services/index/index_contributor.dart

Issue 1100673005: Rename IndexStore to avoid confusion with the new public API (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
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/services/index/index_store.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/services/index/index_contributor.dart
diff --git a/pkg/analysis_server/lib/src/services/index/index_contributor.dart b/pkg/analysis_server/lib/src/services/index/index_contributor.dart
index d2ac8a73b8a1e428394113ba4180997c7e101966..c5dec74fc4c4acb7962e9caa75b7b243748dc60d 100644
--- a/pkg/analysis_server/lib/src/services/index/index_contributor.dart
+++ b/pkg/analysis_server/lib/src/services/index/index_contributor.dart
@@ -21,7 +21,7 @@ import 'package:analyzer/src/generated/source.dart';
* Adds data to [store] based on the resolved Dart [unit].
*/
void indexDartUnit(
- IndexStore store, AnalysisContext context, CompilationUnit unit) {
+ InternalIndexStore store, AnalysisContext context, CompilationUnit unit) {
// check unit
if (unit == null) {
return;
@@ -45,7 +45,7 @@ void indexDartUnit(
* Adds data to [store] based on the resolved HTML [unit].
*/
void indexHtmlUnit(
- IndexStore store, AnalysisContext context, ht.HtmlUnit unit) {
+ InternalIndexStore store, AnalysisContext context, ht.HtmlUnit unit) {
// check unit
if (unit == null) {
return;
@@ -65,10 +65,10 @@ void indexHtmlUnit(
}
/**
- * Visits a resolved AST and adds relationships into [IndexStore].
+ * Visits a resolved AST and adds relationships into [InternalIndexStore].
*/
class _IndexContributor extends GeneralizingAstVisitor {
- final IndexStore _store;
+ final InternalIndexStore _store;
LibraryElement _libraryElement;
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/services/index/index_store.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698