From 2c6a72ba682a4767f6b6cde88c0e374c52feff0a Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Fri, 3 Apr 2020 10:35:08 -0700 Subject: [PATCH] Added a BinaryHeap visualizer --- IDE/dist/BeefDbgVis.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/IDE/dist/BeefDbgVis.toml b/IDE/dist/BeefDbgVis.toml index 59284843..c8006616 100644 --- a/IDE/dist/BeefDbgVis.toml +++ b/IDE/dist/BeefDbgVis.toml @@ -249,6 +249,16 @@ Value = "__clearHighBits(mAllocSizeAndFlags, 1)" Size = "mSize" ValueNode = "mItems[($i + mHead) % __clearHighBits(mAllocSizeAndFlags, 2)]" +[[Type]] +Name = "System.Collections.Generic.BinaryHeap<*>" +DisplayString = "{{ count={mSize} }}" +[[Type.Expand.Item]] +Name = "[Count]" +Value = "mSize" +[Type.Expand.ArrayItems] +Size = "mSize" +ValuePointer = "&this.mData.mFirstElement" + [[Type]] Name = "System.Collections.Generic.Dictionary<*, *>" DisplayString = "{{ count={mCount - mFreeCount} }}"