| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |