Constructs Info for literal rune for Latin1 encoded string.
| 409 | |
| 410 | // Constructs Info for literal rune for Latin1 encoded string. |
| 411 | Prefilter::Info* Prefilter::Info::LiteralLatin1(Rune r) { |
| 412 | Info* info = new Info(); |
| 413 | info->exact_.insert(RuneToStringLatin1(ToLowerRuneLatin1(r))); |
| 414 | info->is_exact_ = true; |
| 415 | return info; |
| 416 | } |
| 417 | |
| 418 | // Constructs Info for dot (any character) or \C (any byte). |
| 419 | Prefilter::Info* Prefilter::Info::AnyCharOrAnyByte() { |
nothing calls this directly
no test coverage detected