MCPcopy Create free account
hub / github.com/beefytech/Beef / IsTypedPrimitive

Method IsTypedPrimitive

IDEHelper/DbgModule.cpp:1113–1132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1111}
1112
1113bool DbgType::IsTypedPrimitive()
1114{
1115 PopulateType();
1116
1117 if (mTypeCode != DbgType_Struct)
1118 return false;
1119
1120 if (mTypeParam != NULL)
1121 return true;
1122
1123 auto baseType = GetBaseType();
1124 if (baseType == NULL)
1125 return false;
1126
1127 if (!baseType->IsTypedPrimitive())
1128 return false;
1129
1130 mTypeParam = baseType->mTypeParam;
1131 return true;
1132}
1133
1134bool DbgType::IsBoolean()
1135{

Callers 7

CastMethod · 0.45
ReadTypedValueMethod · 0.45
DbgTypedValueToStringMethod · 0.45
WinDebugger.cppFile · 0.45
GetInt64Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected