-
Notifications
You must be signed in to change notification settings - Fork 227
Open
Description
I'm currently building a compiler and it would be nice to hide the raw views so I can hide the duplicate info. This is supported on Visual Studio, so this is a request for feature parity.
My current natvis looks similar to this which makes all DataTypes produce 2 RawViews for every single variable.
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="DataType">
<DisplayString>{{{type}}}</DisplayString>
<Expand HideRawView="1">
<ExpandedItem Condition="type == DataType::INT">(DataTypeInt*)this,nd</ExpandedItem>
</Expand>
</Type>
<Type Name="DataTypeInt">
<Expand HideRawView="1">
<Item Name="type">type</Item>
<Item Name="castable">castable</Item>
<Item Name="constant">constant</Item>
<Item Name="Width">Width</Item>
<Item Name="Signedness">Signedness</Item>
</Expand>
</Type>
</AutoVisualizer>Metadata
Metadata
Assignees
Labels
No labels