| 166 | } |
| 167 | |
| 168 | void StringConsumer::SkipUntilUtf8(char32_t c, SeparatorUsage sep) |
| 169 | { |
| 170 | auto [data, len] = EncodeUtf8(c); |
| 171 | return SkipUntil({data, len}, sep); |
| 172 | } |
| 173 | |
| 174 | void StringConsumer::SkipIntegerBase(int base) |
| 175 | { |
no test coverage detected