(&self)
| 244 | // Ref: https://wicg.github.io/urlpattern/#is-a-group-open |
| 245 | #[inline] |
| 246 | fn is_group_open(&self) -> bool { |
| 247 | self.token_list[self.token_index].kind == TokenType::Open |
| 248 | } |
| 249 | |
| 250 | // Ref: https://wicg.github.io/urlpattern/#is-a-group-close |
| 251 | #[inline] |
no outgoing calls
no test coverage detected