Dqn/Code/Deprecated/Dqn.natvis

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-01-25 01:26:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="DqnArray&lt;*&gt;">
2018-09-02 11:17:14 +00:00
<DisplayString>{{len={len}/{max}}}</DisplayString>
2018-01-25 01:26:33 +00:00
<Expand>
2018-09-02 11:17:14 +00:00
<Item Name="[len]">len</Item>
2018-01-25 01:26:33 +00:00
<Item Name="[max]">max</Item>
<ArrayItems>
2018-09-02 11:17:14 +00:00
<Size>len</Size>
2018-01-25 01:26:33 +00:00
<ValuePointer>data</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="DqnMemStack::Block">
2018-09-02 11:17:14 +00:00
<DisplayString>{{used={head-tail}/{size} prev_block={prev_block}}}</DisplayString>
2018-01-25 01:26:33 +00:00
</Type>
2018-09-02 11:17:14 +00:00
<Type Name="DqnSlice&lt;*&gt;">
<DisplayString>{len={len} data={data,[len]}}</DisplayString>
<StringView>data,s</StringView>
2018-01-25 01:26:33 +00:00
</Type>
2018-09-02 11:17:14 +00:00
<Type Name="DqnBuffer&lt;*&gt;">
<DisplayString>{len={len} data={data,[len]}}</DisplayString>
<StringView>data,s</StringView>
</Type>
2018-09-02 11:17:14 +00:00
<Type Name="DqnFixedString&lt;*&gt;">
<DisplayString>{{len={len} {str,s}}}</DisplayString>
<StringView>str,s</StringView>
</Type>
2018-01-25 01:26:33 +00:00
<Type Name="DqnString">
<DisplayString>{{len={len}/{max} {str,s}}}</DisplayString>
<StringView>str,s</StringView>
</Type>
</AutoVisualizer>