1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +02:00

Ability to set debug format for summaries

This commit is contained in:
Brian Fiete 2019-12-24 10:31:38 -08:00
parent aa7cff43dd
commit 69d16f87f6
2 changed files with 22 additions and 3 deletions

View file

@ -269,6 +269,12 @@ public:
}
};
enum DbgTypeKindFlags
{
DbgTypeKindFlag_None = 0,
DbgTypeKindFlag_Int = 1
};
struct DwFormatInfo
{
int mCallStackIdx;
@ -278,6 +284,7 @@ struct DwFormatInfo
bool mNoMembers;
bool mRawString;
bool mNoEdit;
DbgTypeKindFlags mTypeKindFlags;
intptr mArrayLength;
intptr mOverrideCount;
intptr mMaxCount;
@ -300,6 +307,7 @@ struct DwFormatInfo
mNoVisualizers = false;
mNoMembers = false;
mNoEdit = false;
mTypeKindFlags = DbgTypeKindFlag_None;
mArrayLength = -1;
mOverrideCount = -1;
mMaxCount = -1;