(&self)
| 272 | // Ref: https://wicg.github.io/urlpattern/#next-is-authority-slashes |
| 273 | #[inline] |
| 274 | fn next_is_authority_slashes(&self) -> bool { |
| 275 | if !self.is_non_special_pattern_char(self.token_index + 1, "/") { |
| 276 | false |
| 277 | } else { |
| 278 | self.is_non_special_pattern_char(self.token_index + 2, "/") |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | // Ref: https://wicg.github.io/urlpattern/#is-an-ipv6-open |
| 283 | #[inline] |
no test coverage detected