(lazy: bool, mc: MetaCharacter, re: &[char], text: &[char], end: &mut usize)
| 175 | } |
| 176 | |
| 177 | fn ismatch_star(lazy: bool, mc: MetaCharacter, re: &[char], text: &[char], end: &mut usize) -> bool |
| 178 | { |
| 179 | ismatch_char(lazy, mc, re, text, .., end) |
| 180 | } |
| 181 | |
| 182 | fn ismatch_plus(lazy: bool, mc: MetaCharacter, re: &[char], text: &[char], end: &mut usize) -> bool |
| 183 | { |
no test coverage detected