| 27 | static JSONFormattable default_formattable; |
| 28 | |
| 29 | void encode_json(const char *name, const JSONObj::data_val& v, Formatter *f) |
| 30 | { |
| 31 | if (v.quoted) { |
| 32 | encode_json(name, v.str, f); |
| 33 | } else { |
| 34 | f->dump_format_unquoted(name, "%s", v.str.c_str()); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | JSONObjIter::JSONObjIter() |
| 39 | { |
no test coverage detected