(&mut self, state: ConstructorStringParserState)
| 237 | // Ref: https://wicg.github.io/urlpattern/#rewind-and-set-state |
| 238 | #[inline] |
| 239 | fn rewind_and_set_state(&mut self, state: ConstructorStringParserState) { |
| 240 | self.rewind(); |
| 241 | self.state = state; |
| 242 | } |
| 243 | |
| 244 | // Ref: https://wicg.github.io/urlpattern/#is-a-group-open |
| 245 | #[inline] |
no test coverage detected