1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Added __parseCompileUnits test

This commit is contained in:
Brian Fiete 2020-11-18 09:31:52 -08:00
parent 62611713b7
commit a6f85f53f9
4 changed files with 15 additions and 1 deletions

View file

@ -7656,7 +7656,13 @@ DbgTypedValue DbgExprEvaluator::MatchMethod(BfAstNode* targetSrc, DbgTypedValue
return result;
}
}
else if (methodName == "__parseCompileUnits")
{
for (auto dbgModule : mDebugTarget->mDbgModules)
{
dbgModule->ParseCompileUnits();
}
}
DbgType* curTypeDef;
DbgType* targetTypeInst = NULL;