| 169 | } |
| 170 | |
| 171 | static JsonNode *_combo_array() |
| 172 | { |
| 173 | JsonNode *array(json_mkarray()); |
| 174 | for (const string &combo_abbr : playable_combo_names()) |
| 175 | json_append_element(array, json_mkstring(combo_abbr)); |
| 176 | return array; |
| 177 | } |
| 178 | |
| 179 | /*! @brief Returns a JSON object (encoded as a string) of the form |
| 180 | * @code |
no test coverage detected