| 231 | } |
| 232 | |
| 233 | std::vector<std::vector<std::pair<std::string, std::string>>> |
| 234 | parseEithersList(const simdjson::dom::array &Args) { |
| 235 | std::vector<std::vector<std::pair<std::string, std::string>>> Result; |
| 236 | Result.reserve(Args.size()); |
| 237 | for (auto &Maybe : parseExpectedList(Args)) { |
| 238 | Result.emplace_back( |
| 239 | std::vector<std::pair<std::string, std::string>>{Maybe}); |
| 240 | } |
| 241 | return Result; |
| 242 | } |
| 243 | |
| 244 | struct TestsuiteProposal { |
| 245 | TestsuiteProposal( |
no test coverage detected