| 213 | } |
| 214 | |
| 215 | static void appendHex(StringContainer& result, unsigned ch) { |
| 216 | result.append("\\u").append(toHex16Bit(ch)); |
| 217 | } |
| 218 | |
| 219 | static StringContainer valueToQuotedStringN(const char* value, size_t length, bool emitUTF8 = false) { |
| 220 | if (value == nullptr) |
no test coverage detected