| 4358 | } |
| 4359 | |
| 4360 | static void appendHex(String& result, unsigned ch) { |
| 4361 | result.append("\\u").append(toHex16Bit(ch)); |
| 4362 | } |
| 4363 | |
| 4364 | static String valueToQuotedStringN(const char* value, size_t length, |
| 4365 | bool emitUTF8 = false) { |
no test coverage detected