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

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

Issue 1126353004: More renames (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 | « pkg/analysis_server/lib/src/services/index/index.dart ('k') | pkg/analyzer/lib/src/context/context.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/store/split_store.dart
diff --git a/pkg/analysis_server/lib/src/services/index/store/split_store.dart b/pkg/analysis_server/lib/src/services/index/store/split_store.dart
index bde1d08689e96a1ba6821d810250d887c0bd9410..594e18d89e5f79cca06cfdfafe0a76b3cda70e5e 100644
--- a/pkg/analysis_server/lib/src/services/index/store/split_store.dart
+++ b/pkg/analysis_server/lib/src/services/index/store/split_store.dart
@@ -283,7 +283,7 @@ class IndexNode {
// find LocationData(s)
List<LocationData> locationDatas = _relations[key];
if (locationDatas == null) {
- return LocationImpl.EMPTY_ARRAY;
+ return LocationImpl.EMPTY_LIST;
}
// convert to Location(s)
List<LocationImpl> locations = <LocationImpl>[];
@@ -733,7 +733,7 @@ class SplitIndexStore implements InternalIndexStore {
Future<List<LocationImpl>> locationsFuture = nodeFuture.then((node) {
if (node == null) {
// TODO(scheglov) remove node
- return LocationImpl.EMPTY_ARRAY;
+ return LocationImpl.EMPTY_LIST;
}
return node.getRelationships(element, relationship);
});
« no previous file with comments | « pkg/analysis_server/lib/src/services/index/index.dart ('k') | pkg/analyzer/lib/src/context/context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698