(parser: &mut Parser<'_>)
| 3426 | let mut bodies = vec![]; |
| 3427 | |
| 3428 | fn parse_alias(parser: &mut Parser<'_>) -> Result<Option<Ident>, ParserError> { |
| 3429 | parser |
| 3430 | .parse_keyword(AS) |
| 3431 | .then(|| parser.parse_identifier()) |
| 3432 | .transpose() |
| 3433 | } |
| 3434 | |
| 3435 | self.parse_comma_separated(|f| { |
| 3436 | match f.expect_one_of_keywords(&[SECRET, HEADERS, BODY])? { |
no test coverage detected