(&mut self)
| 5519 | } |
| 5520 | |
| 5521 | fn parse_object_option_value(&mut self) -> Result<WithOptionValue<Raw>, ParserError> { |
| 5522 | let _ = self.consume_token(&Token::Eq); |
| 5523 | Ok(WithOptionValue::Item(self.parse_raw_name()?)) |
| 5524 | } |
| 5525 | |
| 5526 | fn parse_optional_option_value(&mut self) -> Result<Option<WithOptionValue<Raw>>, ParserError> { |
| 5527 | // The next token might be a value and might not. The only valid things |
no test coverage detected