(&self)
| 98 | // Ref: https://wicg.github.io/urlpattern/#is-an-identity-terminator |
| 99 | #[inline] |
| 100 | fn is_identity_terminator(&self) -> bool { |
| 101 | self.is_non_special_pattern_char(self.token_index, "@") |
| 102 | } |
| 103 | |
| 104 | // Ref: https://wicg.github.io/urlpattern/#is-a-non-special-pattern-char |
| 105 | fn is_non_special_pattern_char(&self, index: usize, value: &str) -> bool { |
no test coverage detected