Constructs Info for literal rune.
| 401 | |
| 402 | // Constructs Info for literal rune. |
| 403 | Prefilter::Info* Prefilter::Info::Literal(Rune r) { |
| 404 | Info* info = new Info(); |
| 405 | info->exact_.insert(RuneToString(ToLowerRune(r))); |
| 406 | info->is_exact_ = true; |
| 407 | return info; |
| 408 | } |
| 409 | |
| 410 | // Constructs Info for literal rune for Latin1 encoded string. |
| 411 | Prefilter::Info* Prefilter::Info::LiteralLatin1(Rune r) { |
nothing calls this directly
no test coverage detected