|
3 | 3 | <AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
4 | 4 |
|
5 | 5 | <Type Name="Slang::String">
|
6 |
| - <DisplayString>{((char*) (buffer.pointer+1)),s}</DisplayString> |
7 |
| - <StringView>((char*) (buffer.pointer+1)),s</StringView> |
| 6 | + <DisplayString>{((char*) (m_buffer.pointer+1)),s}</DisplayString> |
| 7 | + <StringView>((char*) (m_buffer.pointer+1)),s</StringView> |
8 | 8 | </Type>
|
9 | 9 |
|
10 | 10 | <Type Name="Slang::ArrayView<*>">
|
11 |
| - <DisplayString>{{ size={_count} }}</DisplayString> |
| 11 | + <DisplayString>{{ size={m_count} }}</DisplayString> |
12 | 12 | <Expand>
|
13 |
| - <Item Name="[size]">_count</Item> |
| 13 | + <Item Name="[size]">m_count</Item> |
14 | 14 | <ArrayItems>
|
15 |
| - <Size>_count</Size> |
16 |
| - <ValuePointer>_buffer</ValuePointer> |
| 15 | + <Size>m_count</Size> |
| 16 | + <ValuePointer>m_buffer</ValuePointer> |
17 | 17 | </ArrayItems>
|
18 | 18 | </Expand>
|
19 | 19 | </Type>
|
20 | 20 |
|
21 | 21 | <Type Name="Slang::List<*>">
|
22 |
| - <DisplayString>{{ size={_count} }}</DisplayString> |
| 22 | + <DisplayString>{{ size={m_count} }}</DisplayString> |
23 | 23 | <Expand>
|
24 |
| - <Item Name="[size]">_count</Item> |
25 |
| - <Item Name="[capacity]">bufferSize</Item> |
| 24 | + <Item Name="[size]">m_count</Item> |
| 25 | + <Item Name="[capacity]">m_capacity</Item> |
26 | 26 | <ArrayItems>
|
27 |
| - <Size>_count</Size> |
28 |
| - <ValuePointer>buffer</ValuePointer> |
| 27 | + <Size>m_count</Size> |
| 28 | + <ValuePointer>m_buffer</ValuePointer> |
29 | 29 | </ArrayItems>
|
30 | 30 | </Expand>
|
31 | 31 | </Type>
|
32 | 32 |
|
33 | 33 |
|
34 | 34 | <Type Name="Slang::Array<*,*>">
|
35 |
| - <DisplayString>{{ size={_count} }}</DisplayString> |
| 35 | + <DisplayString>{{ size={m_count} }}</DisplayString> |
36 | 36 | <Expand>
|
37 |
| - <Item Name="[size]">_count</Item> |
| 37 | + <Item Name="[size]">m_count</Item> |
38 | 38 | <ArrayItems>
|
39 |
| - <Size>_count</Size> |
40 |
| - <ValuePointer>_buffer</ValuePointer> |
| 39 | + <Size>m_count</Size> |
| 40 | + <ValuePointer>m_buffer</ValuePointer> |
41 | 41 | </ArrayItems>
|
42 | 42 | </Expand>
|
43 | 43 | </Type>
|
|
0 commit comments