mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 22:34:09 +02:00
DbgVis string fix
This commit is contained in:
parent
86fdca03db
commit
10682e67af
1 changed files with 6 additions and 6 deletions
12
IDE/dist/BeefDbgVis.toml
vendored
12
IDE/dist/BeefDbgVis.toml
vendored
|
@ -52,14 +52,14 @@ String = "{{ {__demangleFakeMember(this)} }}"
|
||||||
Name = "System.String"
|
Name = "System.String"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) == 0"
|
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) == 0"
|
||||||
String = "{(char8*)&mPtr,s8,count=mLength}"
|
String = "{(char8*)&mPtrOrBuffer,s8,count=mLength}"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
String = "{mPtr,s8,count=mLength}"
|
String = "{mPtrOrBuffer,s8,count=mLength}"
|
||||||
[[Type.StringView]]
|
[[Type.StringView]]
|
||||||
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) == 0"
|
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) == 0"
|
||||||
String = "{(char8*)&mPtr,s8,count=mLength}"
|
String = "{(char8*)&mPtrOrBuffer,s8,count=mLength}"
|
||||||
[[Type.StringView]]
|
[[Type.StringView]]
|
||||||
String = "{mPtr,s8,count=mLength}"
|
String = "{mPtrOrBuffer,s8,count=mLength}"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Name = "[Length]"
|
Name = "[Length]"
|
||||||
Value = "mLength"
|
Value = "mLength"
|
||||||
|
@ -78,11 +78,11 @@ Value = "__clearHighBits(mAllocSizeAndFlags, 2)"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) == 0"
|
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) == 0"
|
||||||
Name = "[RawChars]"
|
Name = "[RawChars]"
|
||||||
Value = "(char8*)&mPtr,arraysize=mLength"
|
Value = "(char8*)&mPtrOrBuffer,arraysize=mLength"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) != 0"
|
Condition = "(__getHighBits(mAllocSizeAndFlags, 2) & 1) != 0"
|
||||||
Name = "[RawChars]"
|
Name = "[RawChars]"
|
||||||
Value = "mPtr,arraysize=mLength"
|
Value = "mPtrOrBuffer,arraysize=mLength"
|
||||||
|
|
||||||
[[Type]]
|
[[Type]]
|
||||||
Name = "System.StringView"
|
Name = "System.StringView"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue