(&self)
| 92 | // Ref: https://wicg.github.io/urlpattern/#is-a-pathname-start |
| 93 | #[inline] |
| 94 | fn is_pathname_start(&self) -> bool { |
| 95 | self.is_non_special_pattern_char(self.token_index, "/") |
| 96 | } |
| 97 | |
| 98 | // Ref: https://wicg.github.io/urlpattern/#is-an-identity-terminator |
| 99 | #[inline] |
no test coverage detected