| 428 | } |
| 429 | |
| 430 | void TNlpParser::ProcessIdeographs(const wchar16* ts, const wchar16* te) { |
| 431 | for (const wchar16* p = ts; p != te; ++p) { |
| 432 | Base.AddIdeograph(1); |
| 433 | Y_ASSERT(Base.GetTokenCount() == 1); |
| 434 | MakeMultitokenEntry(Base.GetToken(0), p); |
| 435 | Base.ResetTokens(); |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | void TNlpParser::Execute(const wchar16* text, size_t len, const wchar16** textStart) { |
| 440 | if (!len) |
nothing calls this directly
no test coverage detected