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

Function PdbTest

IDEHelper/WinDebugger.cpp:9871–9888  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9869}
9870
9871static void PdbTest(WinDebugger* debugger, const StringImpl& path)
9872{
9873 for (auto& fileEntry : FileEnumerator(path, FileEnumerator::Flags_Files))
9874 {
9875 String filePath = fileEntry.GetFilePath();
9876
9877 PdbTestFile(debugger, filePath);
9878 }
9879
9880 for (auto& fileEntry : FileEnumerator(path, FileEnumerator::Flags_Directories))
9881 {
9882 String childPath = fileEntry.GetFilePath();
9883 String dirName;
9884 dirName = GetFileName(childPath);
9885
9886 PdbTest(debugger, childPath);
9887 }
9888}
9889
9890String WinDebugger::Evaluate(const StringImpl& expr, DwFormatInfo formatInfo, int callStackIdx, int cursorPos, int language, DwEvalExpressionFlags expressionFlags)
9891{

Callers 1

EvaluateMethod · 0.85

Calls 3

FileEnumeratorClass · 0.85
PdbTestFileFunction · 0.85
GetFilePathMethod · 0.45

Tested by

no test coverage detected