(&self)
| 47 | // Ref: https://wicg.github.io/urlpattern/#is-a-hash-prefix |
| 48 | #[inline] |
| 49 | fn is_hash_prefix(&self) -> bool { |
| 50 | self.is_non_special_pattern_char(self.token_index, "#") |
| 51 | } |
| 52 | |
| 53 | // Ref: https://wicg.github.io/urlpattern/#is-a-protocol-suffix |
| 54 | #[inline] |
no test coverage detected