| 270 | } |
| 271 | |
| 272 | static void appendHex(String& result, unsigned ch) { |
| 273 | result.append("\\u").append(toHex16Bit(ch)); |
| 274 | } |
| 275 | |
| 276 | static String valueToQuotedStringN(const char* value, size_t length, |
| 277 | bool emitUTF8 = false) { |
no test coverage detected
searching dependent graphs…