| 4685 | } |
| 4686 | |
| 4687 | static void appendRaw(String &result, unsigned ch) { result += static_cast<char>(ch); } |
| 4688 | |
| 4689 | static void appendHex(String &result, unsigned ch) { result.append("\\u").append(toHex16Bit(ch)); } |
| 4690 |
no outgoing calls
no test coverage detected