(&mut self)
| 222 | // Ref: https://wicg.github.io/urlpattern/#try-to-consume-a-modifier-token |
| 223 | #[inline] |
| 224 | fn try_consume_modifier_token(&mut self) -> Option<Token<'a>> { |
| 225 | self |
| 226 | .try_consume_token(TokenType::OtherModifier) |
| 227 | .or_else(|| self.try_consume_token(TokenType::Asterisk)) |
| 228 | } |
| 229 | |
| 230 | // Ref: https://wicg.github.io/urlpattern/#maybe-add-a-part-from-the-pending-fixed-value |
| 231 | #[inline] |
no test coverage detected