| 8 | } |
| 9 | |
| 10 | void throwMissingUtf8End() { |
| 11 | throw UnicodeException("UTF-8 string missing trailing code units in utf8Length"); |
| 12 | } |
| 13 | |
| 14 | void throwInvalidUtf32CodePoint(Utf32Type val) { |
| 15 | throw UnicodeException::format("Invalid UTF-32 code point {} encountered while trying to encode UTF-8", (int32_t)val); |
no outgoing calls
no test coverage detected