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

Side by Side Diff: pkg/analysis_server/lib/src/status/memory_use.dart

Issue 2894883002: Remove more libraries directives from server (Closed)
Patch Set: Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 library analysis_server.src.status.memory_use;
6
7 import 'dart:collection'; 5 import 'dart:collection';
8 6
9 import 'package:analysis_server/src/analysis_server.dart'; 7 import 'package:analysis_server/src/analysis_server.dart';
10 import 'package:analyzer/dart/ast/ast.dart'; 8 import 'package:analyzer/dart/ast/ast.dart';
11 import 'package:analyzer/dart/ast/visitor.dart'; 9 import 'package:analyzer/dart/ast/visitor.dart';
12 import 'package:analyzer/dart/element/element.dart'; 10 import 'package:analyzer/dart/element/element.dart';
13 import 'package:analyzer/dart/element/visitor.dart'; 11 import 'package:analyzer/dart/element/visitor.dart';
14 import 'package:analyzer/src/context/cache.dart'; 12 import 'package:analyzer/src/context/cache.dart';
15 import 'package:analyzer/src/context/context.dart' show AnalysisContextImpl; 13 import 'package:analyzer/src/context/context.dart' show AnalysisContextImpl;
16 import 'package:analyzer/src/dart/element/element.dart'; 14 import 'package:analyzer/src/dart/element/element.dart';
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 } 305 }
308 } 306 }
309 ownerMap 307 ownerMap
310 .putIfAbsent(instance.runtimeType, () => new HashSet<Type>()) 308 .putIfAbsent(instance.runtimeType, () => new HashSet<Type>())
311 .add(owner.runtimeType); 309 .add(owner.runtimeType);
312 if (instance is LibrarySpecificUnit) { 310 if (instance is LibrarySpecificUnit) {
313 uniqueLSUs.add(instance); 311 uniqueLSUs.add(instance);
314 } 312 }
315 } 313 }
316 } 314 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/status/get_handler.dart ('k') | pkg/analysis_server/lib/src/status/tree_writer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698