| 2274 | } |
| 2275 | |
| 2276 | Json::Value Target::DumpCommandFragments( |
| 2277 | std::vector<JBT<std::string>> const& frags) |
| 2278 | { |
| 2279 | Json::Value commandFragments = Json::arrayValue; |
| 2280 | for (JBT<std::string> const& f : frags) { |
| 2281 | commandFragments.append(this->DumpCommandFragment(f)); |
| 2282 | } |
| 2283 | return commandFragments; |
| 2284 | } |
| 2285 | |
| 2286 | Json::Value Target::DumpCommandFragment(JBT<std::string> const& frag, |
| 2287 | std::string const& role) |
no test coverage detected