OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 part of models; |
| 6 |
| 7 abstract class HeapSnapshot { |
| 8 DateTime get timestamp; |
| 9 int get objects; |
| 10 int get references; |
| 11 int get size; |
| 12 HeapSnapshotDominatorNode get dominatorTree; |
| 13 Iterable<HeapSnapshotClassReferences> get classReferences; |
| 14 } |
| 15 |
| 16 abstract class HeapSnapshotDominatorNode { |
| 17 int get shallowSize; |
| 18 int get retainedSize; |
| 19 Future<ObjectRef> get object; |
| 20 Iterable<HeapSnapshotDominatorNode> get children; |
| 21 } |
| 22 |
| 23 abstract class HeapSnapshotClassReferences { |
| 24 ClassRef get clazz; |
| 25 int get instances; |
| 26 int get shallowSize; |
| 27 int get retainedSize; |
| 28 Iterable<HeapSnapshotClassInbound> get inbounds; |
| 29 Iterable<HeapSnapshotClassOutbound> get outbounds; |
| 30 } |
| 31 |
| 32 abstract class HeapSnapshotClassInbound { |
| 33 ClassRef get source; |
| 34 int get count; |
| 35 int get shallowSize; |
| 36 int get retainedSize; |
| 37 } |
| 38 |
| 39 abstract class HeapSnapshotClassOutbound { |
| 40 ClassRef get target; |
| 41 int get count; |
| 42 int get shallowSize; |
| 43 int get retainedSize; |
| 44 } |
OLD | NEW |