예제 #1
0
			public MethodNode (ProfileStore store, Node parent, LoadedClass.AllocationsPerMethod instance) : base (store, parent)
			{
				this.instance = instance;
			}
예제 #2
0
			public ClassNode (ProfileStore store, Node parent, LoadedClass instance) : base (store, parent)
			{
				this.instance = instance;
			}
예제 #3
0
			public StatNode (ProfileStore store, Node parent, IStatisticalHitItem item) : base (store, parent)
			{
				this.item = item;
			}
예제 #4
0
			public CallsNode (ProfileStore store, Node parent, StackTrace frame) : base (store, parent)
			{
				this.frame = frame;
			}
예제 #5
0
파일: Node.cs 프로젝트: col42dev/mono-tools
		public Node (ProfileStore store, Node parent)
		{
			this.store = store;
			this.parent = parent;
			gch = GCHandle.Alloc (this, GCHandleType.Weak);
		}