2023-05-08 17:54:24 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
2023-06-30 00:13:41 -07:00
|
|
|
|
2023-07-11 15:29:45 -07:00
|
|
|
<Type Name="gen::AllocatorInfo">
|
|
|
|
<DisplayString>Data:{Data} Proc:{Proc}</DisplayString>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::Array<*>">
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString>Num:{((Header*)((char*)Data - sizeof(Header)))->Num},
|
|
|
|
Capacity:{((Header*)((char*)Data - sizeof(Header)))->Capacity}</DisplayString>
|
2023-07-11 15:29:45 -07:00
|
|
|
<Expand>
|
|
|
|
<Synthetic Name="Header">
|
|
|
|
<DisplayString>{(Header*)((char*)Data - sizeof(Header))}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Allocator">((Header*)((char*)Data - sizeof(Header)))->Allocator</Item>
|
|
|
|
<Item Name="Capacity">((Header*)((char*)Data - sizeof(Header)))->Capacity</Item>
|
|
|
|
<Item Name="Num">((Header*)((char*)Data - sizeof(Header)))->Num</Item>
|
|
|
|
</Expand>
|
|
|
|
</Synthetic>
|
|
|
|
<ArrayItems>
|
|
|
|
<Size>((Header*)((char*)Data - sizeof(Header)))->Capacity</Size>
|
|
|
|
<ValuePointer>Data</ValuePointer>
|
|
|
|
</ArrayItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::StrC">
|
2023-07-10 19:14:41 -07:00
|
|
|
<DisplayString>Len:{Len} Ptr:{Ptr, [Len]s}</DisplayString>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-11 15:29:45 -07:00
|
|
|
<Type Name="gen::String">
|
2023-05-08 17:54:24 -07:00
|
|
|
<DisplayString Condition="Data == nullptr">null</DisplayString>
|
|
|
|
<DisplayString>{Data,na}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Synthetic Name="Header">
|
|
|
|
<DisplayString>{(Header*)((char*)Data - sizeof(Header))}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Allocator">((Header*)((char*)Data - sizeof(Header)))->Allocator</Item>
|
|
|
|
<Item Name="Length">((Header*)((char*)Data - sizeof(Header)))->Length</Item>
|
|
|
|
<Item Name="Capacity">((Header*)((char*)Data - sizeof(Header)))->Capacity</Item>
|
|
|
|
</Expand>
|
|
|
|
</Synthetic>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-11 15:29:45 -07:00
|
|
|
<Type Name="gen::String::Header">
|
2023-05-08 17:54:24 -07:00
|
|
|
<DisplayString>Length: {Length}, Capacity: {Capacity}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Allocator">Allocator</Item>
|
|
|
|
<Item Name="Length">Length</Item>
|
|
|
|
<Item Name="Capacity">Capacity</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-09 22:15:25 -07:00
|
|
|
<Type Name="gen::AST">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="this != nullptr">{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Content">Content</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
<Item Name="NumEntries">NumEntries</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::Code">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} Type: {ast->Type}</DisplayString>
|
|
|
|
<Expand HideRawView="false">
|
|
|
|
<Item Name="Content">ast->Content</Item>
|
|
|
|
<Item Name="Body">ast->Body</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags" Condition="ast->ModuleFlags != ModuleFlag::Invalid">ast->ModuleFlags</Item>
|
|
|
|
<Item Name="ArrSpecs" Condition="ast->ArrSpecs[0] < 18">ast->ArrSpecs</Item>
|
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
<Item Name="NumEntries">ast->NumEntries</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Body">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-09 22:15:25 -07:00
|
|
|
<Expand>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Front">Front</Item>
|
|
|
|
<Item Name="Back">Back</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="NumEntries">NumEntries</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Attributes">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Content">Content</Item>
|
2023-07-10 19:14:41 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Comment">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Content">Content</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Class">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-10 19:14:41 -07:00
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="ParentType">ParentType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ParentAccess">ParentAccess</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
2023-07-10 19:14:41 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-15 17:56:27 -07:00
|
|
|
<Type Name="gen::AST_Enum">
|
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="UnderlyingType">UnderlyingType</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Parent">Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-15 17:56:27 -07:00
|
|
|
<Type Name="gen::AST_Exec">
|
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Extern">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Include">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Content">Content</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Friend">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Declaration">Declaration</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Fn">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="Specs">Specs</Item>
|
|
|
|
<Item Name="ReturnType">ReturnType</Item>
|
|
|
|
<Item Name="Params">Params</Item>
|
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Module">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Namespace">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
<Item Name="Body">Body</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Operator">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="Specs">Specs</Item>
|
|
|
|
<Item Name="ReturnType">ReturnType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Op">Op</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Params">Params</Item>
|
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_OpCast">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ValueType">ValueType</Item>
|
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Param">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ValueType">ValueType</Item>
|
|
|
|
<Item Name="Value">Value</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
2023-07-15 19:27:38 -07:00
|
|
|
<Item Name="Last">Last</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
<Item Name="NumEntries">NumEntries</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Specifiers">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
2023-07-15 20:38:53 -07:00
|
|
|
<Item Name="Specs">Specs</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="NumEntries">NumEntries</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Struct">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="ParentType">ParentType</Item>
|
|
|
|
<Item Name="ParentAccess">ParentAccess</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Body">Body</Item>
|
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Template">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Declaration">Declaration</Item>
|
|
|
|
<Item Name="Params">Params</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Type">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="Specs">Specs</Item>
|
|
|
|
<Item Name="ArrExpr">ArrExpr</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Typedef">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="UnderlyingType">UnderlyingType</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Union">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="Body">Body</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Using">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="UnderlyingType">UnderlyingType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="ParentAccess">ParentAccess</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_UsingNamespace">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="Name">Name</Item>
|
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::AST_Var">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString>{Name} Type: {Type}</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Expand>
|
|
|
|
<Item Name="ModuleFlags">ModuleFlags</Item>
|
|
|
|
<Item Name="Attributes">Attributes</Item>
|
|
|
|
<Item Name="Specs">Specs</Item>
|
|
|
|
<Item Name="ValueType">ValueType</Item>
|
|
|
|
<Item Name="Value">Value</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">Parent</Item>
|
|
|
|
<Item Name="Prev">Prev</Item>
|
|
|
|
<Item Name="Next">Next</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-15 17:56:27 -07:00
|
|
|
<Type Name="gen::CodeBody">
|
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-10 19:14:41 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-15 23:26:55 -07:00
|
|
|
<Item Name="Front">ast->Front</Item>
|
|
|
|
<Item Name="Back">ast->Back</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="NumEntries">ast->NumEntries</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-15 17:56:27 -07:00
|
|
|
<Type Name="gen::CodeAttributes">
|
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Content">ast->Content</Item>
|
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeComment">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Content">ast->Content</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeClass">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="ParentType">ast->ParentType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ParentAccess">ast->ParentAccess</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Body">ast->Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
2023-07-09 22:15:25 -07:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-14 21:03:14 -07:00
|
|
|
<Type Name="gen::CodeExec">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Body">ast->Body</Item>
|
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
|
|
|
<Item Name="Name">ast->Name</Item>
|
|
|
|
<Item Name="Type">ast->Type</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeEnum">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="UnderlyingType">ast->UnderlyingType</Item>
|
|
|
|
<Item Name="Body">ast->Body</Item>
|
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeInclude">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Content">ast->Content</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeFriend">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Declaration">ast->Declaration</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeFn">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="Specs">ast->Specs</Item>
|
|
|
|
<Item Name="ReturnType">ast->ReturnType</Item>
|
|
|
|
<Item Name="Params">ast->Params</Item>
|
|
|
|
<Item Name="Body">ast->Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeModule">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeNamespace">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Body">ast->Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeOperator">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="Specs">ast->Specs</Item>
|
|
|
|
<Item Name="ReturnType">ast->ReturnType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Op">ast->Op</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Params">ast->Params</Item>
|
|
|
|
<Item Name="Body">ast->Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeOpCast">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="ValueType">ast->ValueType</Item>
|
|
|
|
<Item Name="Body">ast->Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeParam">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="ValueType">ast->ValueType</Item>
|
|
|
|
<Item Name="Value">ast->Value</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-15 19:27:38 -07:00
|
|
|
<Item Name="Last">ast->Last</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
<Item Name="NumEntries">ast->NumEntries</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2023-07-15 12:20:55 -07:00
|
|
|
<Type Name="gen::CodeSpecifier">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 20:38:53 -07:00
|
|
|
<Item Name="Specs">ast->Specs</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
<Item Name="NumEntries">ast->NumEntries</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeStruct">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="ParentType">ast->ParentType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ParentAccess">ast->ParentAccess</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Body">ast->Body</Item>
|
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeTemplate">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-15 19:27:38 -07:00
|
|
|
<Item Name="Params">ast->Params</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Declaration">ast->Declaration</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeType">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="Specs">ast->Specs</Item>
|
|
|
|
<Item Name="ArrExpr">ast->ArrExpr</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeTypedef">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="UnderlyingType">ast->UnderlyingType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeUnion">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="Body">ast->Body</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeUsing">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="UnderlyingType">ast->UnderlyingType</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeUsingNamespace">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
|
|
|
<Item Name="Name">ast->Name</Item>
|
|
|
|
<Item Name="Type">ast->Type</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="gen::CodeVar">
|
2023-07-15 17:56:27 -07:00
|
|
|
<DisplayString Condition="ast == nullptr">Null</DisplayString>
|
2023-07-14 21:03:14 -07:00
|
|
|
<DisplayString Condition="ast != nullptr">{ast->Name} {ast->Type}</DisplayString>
|
|
|
|
<Expand>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="ModuleFlags">ast->ModuleFlags</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Attributes">ast->Attributes</Item>
|
|
|
|
<Item Name="Specs">ast->Specs</Item>
|
|
|
|
<Item Name="ValueType">ast->ValueType</Item>
|
|
|
|
<Item Name="Value">ast->Value</Item>
|
2023-07-15 17:56:27 -07:00
|
|
|
<Item Name="Parent">ast->Parent</Item>
|
2023-07-14 21:03:14 -07:00
|
|
|
<Item Name="Prev">ast->Prev</Item>
|
|
|
|
<Item Name="Next">ast->Next</Item>
|
|
|
|
</Expand>
|
2023-07-09 22:15:25 -07:00
|
|
|
</Type>
|
|
|
|
|
2023-07-14 21:03:14 -07:00
|
|
|
<Type Name="gen::Parser::Token">
|
2023-07-10 19:14:41 -07:00
|
|
|
<DisplayString>Length:{Length} Text:{Text, [Length]s} Type:{Type}</DisplayString>
|
2023-07-09 22:15:25 -07:00
|
|
|
</Type>
|
|
|
|
|
2023-07-08 14:14:05 -07:00
|
|
|
<Type Name="gen::Parser::TokArray">
|
2023-07-10 22:09:50 -07:00
|
|
|
<DisplayString>Current[ { Arr[Idx] } ] Idx:{ Idx }</DisplayString>
|
2023-07-08 14:14:05 -07:00
|
|
|
</Type>
|
|
|
|
|
2023-07-15 17:56:27 -07:00
|
|
|
</AutoVisualizer>
|