| 9869 | } |
| 9870 | |
| 9871 | static 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 | |
| 9890 | String WinDebugger::Evaluate(const StringImpl& expr, DwFormatInfo formatInfo, int callStackIdx, int cursorPos, int language, DwEvalExpressionFlags expressionFlags) |
| 9891 | { |
no test coverage detected