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

Unified Diff: pkg/analysis_server/lib/src/search/type_hierarchy.dart

Issue 456613004: Integration test search.getTypeHierarchy and make some minor fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/src/search/type_hierarchy.dart
diff --git a/pkg/analysis_server/lib/src/search/type_hierarchy.dart b/pkg/analysis_server/lib/src/search/type_hierarchy.dart
index 3ec189b5c921e32814ac61276f3fa6fa5cc40f32..650f8a7cc03f3a02b7e56becd4156cc029990b31 100644
--- a/pkg/analysis_server/lib/src/search/type_hierarchy.dart
+++ b/pkg/analysis_server/lib/src/search/type_hierarchy.dart
@@ -47,7 +47,7 @@ class TypeHierarchyComputer {
return new Future.value(_items);
});
}
- return new Future.value([]);
+ return new Future.value(null);
}
Future _createSubclasses(TypeHierarchyItem item, InterfaceType type) {

Powered by Google App Engine
This is Rietveld 408576698