| 98 | } |
| 99 | |
| 100 | bool cmForEachFunctionBlocker::Replay( |
| 101 | std::vector<cmListFileFunction> functions, cmExecutionStatus& inStatus) |
| 102 | { |
| 103 | if (this->Args.size() == this->IterationVarsCount) { |
| 104 | return true; |
| 105 | } |
| 106 | return this->ZipLists ? this->ReplayZipLists(functions, inStatus) |
| 107 | : this->ReplayItems(functions, inStatus); |
| 108 | } |
| 109 | |
| 110 | bool cmForEachFunctionBlocker::ReplayItems( |
| 111 | std::vector<cmListFileFunction> const& functions, |
nothing calls this directly
no test coverage detected