mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-07 13:33:13 +00:00
29 lines
781 B
XML
29 lines
781 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
|
<Type Name="String">
|
|
<DisplayString>{text,[len]s8}</DisplayString>
|
|
<StringView>text,[len]s8</StringView>
|
|
</Type>
|
|
<Type Name="Array<*>">
|
|
<DisplayString>{{ size={count} capacity={capacity} }}</DisplayString>
|
|
<Expand>
|
|
<ArrayItems>
|
|
<Size>count</Size>
|
|
<ValuePointer>data</ValuePointer>
|
|
</ArrayItems>
|
|
</Expand>
|
|
</Type>
|
|
<Type Name="Slice<*>">
|
|
<DisplayString>{{ size={count} }}</DisplayString>
|
|
<Expand>
|
|
<ArrayItems>
|
|
<Size>count</Size>
|
|
<ValuePointer>data</ValuePointer>
|
|
</ArrayItems>
|
|
</Expand>
|
|
</Type>
|
|
<Type Name="lbProcedure">
|
|
<DisplayString>Procedure {name}</DisplayString>
|
|
</Type>
|
|
</AutoVisualizer>
|