(&mut self, code_position: usize, jump: Jump)
| 1179 | |
| 1180 | #[must_use] |
| 1181 | const fn next_at(&mut self, code_position: usize, jump: Jump) -> Self { |
| 1182 | self.jump = jump; |
| 1183 | Self { |
| 1184 | code_position, |
| 1185 | jump: Jump::OpCode, |
| 1186 | count: -1, |
| 1187 | ..*self |
| 1188 | } |
| 1189 | } |
| 1190 | } |
| 1191 | |
| 1192 | fn at<S: StrDrive>(req: &Request<'_, S>, ctx: &MatchContext, at_code: SreAtCode) -> bool { |
no outgoing calls
no test coverage detected