diff options
| author | Tim Foley <tfoley@nvidia.com> | 2017-06-15 13:24:25 -0700 |
|---|---|---|
| committer | Tim Foley <tfoley@nvidia.com> | 2017-06-15 13:24:25 -0700 |
| commit | 205187b561c3b31fa931e73e8f7263f0c4b1de41 (patch) | |
| tree | 7bd2cd5ae3c14416b71ef8319ff02ace429d1132 /source/core/core.natvis | |
| parent | 517513645afb8eaf4841e7b7035f1ba3a9c7cd57 (diff) | |
Rename `CoreLib::*` to `Slang`
Getting rid of more namespace complexity and stripping things down to the basics.
This also gets rid of some dead code in the "core" library.
Diffstat (limited to 'source/core/core.natvis')
| -rw-r--r-- | source/core/core.natvis | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source/core/core.natvis b/source/core/core.natvis index b856d31db..271e39663 100644 --- a/source/core/core.natvis +++ b/source/core/core.natvis @@ -2,12 +2,12 @@ <AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> -<Type Name="CoreLib::Basic::String"> +<Type Name="Slang::String"> <DisplayString>{buffer.pointer,s}</DisplayString> <StringView>buffer.pointer,s</StringView> </Type> -<Type Name="CoreLib::Basic::ArrayView<*>"> +<Type Name="Slang::ArrayView<*>"> <DisplayString>{{ size={_count} }}</DisplayString> <Expand> <Item Name="[size]">_count</Item> @@ -18,7 +18,7 @@ </Expand> </Type> -<Type Name="CoreLib::Basic::List<*>"> +<Type Name="Slang::List<*>"> <DisplayString>{{ size={_count} }}</DisplayString> <Expand> <Item Name="[size]">_count</Item> @@ -31,7 +31,7 @@ </Type> -<Type Name="CoreLib::Basic::Array<*,*>"> +<Type Name="Slang::Array<*,*>"> <DisplayString>{{ size={_count} }}</DisplayString> <Expand> <Item Name="[size]">_count</Item> @@ -42,7 +42,7 @@ </Expand> </Type> -<Type Name="CoreLib::Basic::LinkedList<*>"> +<Type Name="Slang::LinkedList<*>"> <DisplayString>{{ size={FCount} }}</DisplayString> <Expand> <LinkedListItems> @@ -54,7 +54,7 @@ </Expand> </Type> -<Type Name="CoreLib::Basic::Dictionary<*,*>"> +<Type Name="Slang::Dictionary<*,*>"> <DisplayString>{{ size={_count} }}</DisplayString> <Expand> <Item Name="[size]">_count</Item> @@ -66,7 +66,7 @@ </Expand> </Type> -<Type Name="CoreLib::Basic::EnumerableDictionary<*,*>"> +<Type Name="Slang::EnumerableDictionary<*,*>"> <DisplayString>{{ size={_count} }}</DisplayString> <Expand> <Item Name="[size]">_count</Item> @@ -80,7 +80,7 @@ </Expand> </Type> -<Type Name="CoreLib::Basic::EnumerableHashSet<*,*>"> +<Type Name="Slang::EnumerableHashSet<*,*>"> <DisplayString>{{ size={dict._count} }}</DisplayString> <Expand> <Item Name="[size]">dict._count</Item> @@ -94,7 +94,7 @@ </Expand> </Type> -<Type Name="CoreLib::Basic::RefPtrImpl<*,*,*>"> +<Type Name="Slang::RefPtrImpl<*,*,*>"> <SmartPointer Usage="Minimal">pointer</SmartPointer> <DisplayString Condition="pointer == 0">empty</DisplayString> <DisplayString Condition="pointer != 0">RefPtr {*pointer}</DisplayString> |
