(&mut self)
| 4335 | } |
| 4336 | |
| 4337 | fn parse_index_option_name(&mut self) -> Result<IndexOptionName, ParserError> { |
| 4338 | self.expect_keywords(&[RETAIN, HISTORY])?; |
| 4339 | Ok(IndexOptionName::RetainHistory) |
| 4340 | } |
| 4341 | |
| 4342 | fn parse_index_option(&mut self) -> Result<IndexOption<Raw>, ParserError> { |
| 4343 | let name = self.parse_index_option_name()?; |
no test coverage detected