(&mut self, req: &Request<'_, S>)
| 131 | } |
| 132 | |
| 133 | pub fn py_match<S: StrDrive>(&mut self, req: &Request<'_, S>) -> bool { |
| 134 | self.start = req.start; |
| 135 | req.string.adjust_cursor(&mut self.cursor, self.start); |
| 136 | |
| 137 | let ctx = MatchContext { |
| 138 | cursor: self.cursor, |
| 139 | code_position: 0, |
| 140 | toplevel: true, |
| 141 | jump: Jump::OpCode, |
| 142 | repeat_ctx_id: usize::MAX, |
| 143 | count: -1, |
| 144 | }; |
| 145 | _match(req, self, ctx) |
| 146 | } |
| 147 | |
| 148 | pub fn search<S: StrDrive>(&mut self, mut req: Request<'_, S>) -> bool { |
| 149 | self.start = req.start; |
nothing calls this directly
no test coverage detected