| 56 | } |
| 57 | |
| 58 | static void print_json_array(Json_writer *writer, |
| 59 | const char *title, String_list &list) |
| 60 | { |
| 61 | List_iterator_fast<char> it(list); |
| 62 | const char *name; |
| 63 | writer->add_member(title).start_array(); |
| 64 | while ((name= it++)) |
| 65 | writer->add_str(name); |
| 66 | writer->end_array(); |
| 67 | } |
| 68 | |
| 69 | |
| 70 |
no test coverage detected