| 240 | } |
| 241 | |
| 242 | common_json common_chat_msg_parser::consume_json() { |
| 243 | if (auto result = try_consume_json()) { |
| 244 | return *result; |
| 245 | } |
| 246 | throw common_chat_msg_partial_exception("JSON"); |
| 247 | } |
| 248 | |
| 249 | common_chat_msg_parser::consume_json_result common_chat_msg_parser::consume_json_with_dumped_args( |
| 250 | const std::vector<std::vector<std::string>> & args_paths, |
no test coverage detected