| 4354 | } |
| 4355 | |
| 4356 | static void appendRaw(String& result, unsigned ch) { |
| 4357 | result += static_cast<char>(ch); |
| 4358 | } |
| 4359 | |
| 4360 | static void appendHex(String& result, unsigned ch) { |
| 4361 | result.append("\\u").append(toHex16Bit(ch)); |
no outgoing calls
no test coverage detected