about summary refs log tree commit diff
path: root/src/test/debuginfo/msvc-embedded-natvis.natvis
blob: 201d014b5201dbbec681cef7b6e10435b890140e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
  <Type Name="msvc_embedded_natvis::Point">
    <DisplayString>({x}, {y})</DisplayString>
    <Expand>
      <Item Name="[x]">x</Item>
      <Item Name="[y]">y</Item>
    </Expand>
  </Type>

  <Type Name="msvc_embedded_natvis::Line">
    <DisplayString>({a}, {b})</DisplayString>
    <Expand>
      <Item Name="[a]">a</Item>
      <Item Name="[b]">b</Item>
    </Expand>
  </Type>
</AutoVisualizer>