| 429 | static std::shared_ptr<cmListFileFunction> listFileFunction; |
| 430 | |
| 431 | void cmDebuggerAdapter::OnBeginFileParse(cmMakefile* mf, |
| 432 | std::string const& sourcePath) |
| 433 | { |
| 434 | std::unique_lock<std::mutex> lock(Mutex); |
| 435 | |
| 436 | listFileFunction = std::make_shared<cmListFileFunction>( |
| 437 | sourcePath, 0, 0, std::vector<cmListFileArgument>()); |
| 438 | DefaultThread->PushStackFrame(mf, sourcePath, *listFileFunction); |
| 439 | } |
| 440 | |
| 441 | void cmDebuggerAdapter::OnEndFileParse() |
| 442 | { |
no test coverage detected