(&self, a: char, b: char)
| 232 | } |
| 233 | |
| 234 | fn ci_eq(&self, a: char, b: char) -> bool { |
| 235 | if a == b { return true; } |
| 236 | if self.flags.ignorecase { a.to_lowercase().eq(b.to_lowercase()) } else { false } |
| 237 | } |
| 238 | |
| 239 | fn at_start(&self, pos: usize) -> bool { |
| 240 | pos == 0 || (self.flags.multiline && pos > 0 && self.input[pos - 1] == '\n') |
no test coverage detected