| 209 | } |
| 210 | |
| 211 | static void appendRaw(StringContainer& result, unsigned ch) { |
| 212 | result += static_cast<char>(ch); |
| 213 | } |
| 214 | |
| 215 | static void appendHex(StringContainer& result, unsigned ch) { |
| 216 | result.append("\\u").append(toHex16Bit(ch)); |
no outgoing calls
no test coverage detected