| 266 | } |
| 267 | |
| 268 | static void appendRaw(String& result, unsigned ch) { |
| 269 | result += static_cast<char>(ch); |
| 270 | } |
| 271 | |
| 272 | static void appendHex(String& result, unsigned ch) { |
| 273 | result.append("\\u").append(toHex16Bit(ch)); |
no outgoing calls
no test coverage detected
searching dependent graphs…