示例#1
0
 public ReferenceNode(HeapSnapshot map, int type, bool inverse)
 {
     this.map     = map;
     this.type    = type;
     TypeName     = map.GetTypeName(type);
     this.inverse = inverse;
 }
示例#2
0
 public ReferenceNode(HeapSnapshot map, int type, PathTree pathTree)
 {
     this.map      = map;
     this.type     = type;
     TypeName      = map.GetTypeName(type);
     this.pathTree = pathTree;
     FillRootPaths();
 }