(&mut self)
| 790 | } |
| 791 | |
| 792 | fn parse_guard(&mut self) -> Result<Expression, ParsingError> { |
| 793 | self.expect(Kind::If)?; |
| 794 | self.parse_named_expression() |
| 795 | } |
| 796 | |
| 797 | // https://docs.python.org/3/reference/compound_stmts.html#grammar-token-python-grammar-patterns |
| 798 | // The open sequence pattern is either a pattern or maybe star pattern |
no test coverage detected