(&self)
| 53 | // Ref: https://wicg.github.io/urlpattern/#is-a-protocol-suffix |
| 54 | #[inline] |
| 55 | fn is_protocol_suffix(&self) -> bool { |
| 56 | self.is_non_special_pattern_char(self.token_index, ":") |
| 57 | } |
| 58 | |
| 59 | // Ref: https://wicg.github.io/urlpattern/#is-a-search-prefix |
| 60 | fn is_search_prefix(&self) -> bool { |
no test coverage detected