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

Unified Diff: pkg/analysis_server/lib/src/status/get_handler.dart

Issue 2142593002: Tweak for the type of the 'instances' variable. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/status/get_handler.dart
diff --git a/pkg/analysis_server/lib/src/status/get_handler.dart b/pkg/analysis_server/lib/src/status/get_handler.dart
index 2d3ffa0dd963593b6fe16fd6f9c4eb70d8602834..9a7aadd46f525ef2edc419f91d6b20f1d9d3f788 100644
--- a/pkg/analysis_server/lib/src/status/get_handler.dart
+++ b/pkg/analysis_server/lib/src/status/get_handler.dart
@@ -1659,7 +1659,7 @@ class GetHandler {
AnalysisServer server = _server.analysisServer;
MemoryUseData data = new MemoryUseData();
data.processAnalysisServer(server);
- Map<Type, HashSet> instances = data.instances;
+ Map<Type, Set> instances = data.instances;
List<Type> types = instances.keys.toList();
types.sort((Type left, Type right) =>
left.toString().compareTo(right.toString()));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698