| 184 | SuffixChar = 0; |
| 185 | } |
| 186 | void AddIdeograph(size_t len) { |
| 187 | Y_ASSERT(!CurCharSpan.Len && (len == 1 || len == 2)); |
| 188 | Current->AddIdeograph(len); |
| 189 | } |
| 190 | void AddLastToken(const wchar16* tokstart, const wchar16* tokend) { |
| 191 | // - CurCharSpan.Len assigned to 0 in AddToken() because in case of multitoken with '.' at the end, for |
| 192 | // example: " well-formed. " parser already called to %add_token because '.' can be delimiter of the next token |
nothing calls this directly
no test coverage detected