star named expressions is similar to starred expression but it does not accept expression as a value https://docs.python.org/3/reference/grammar.html
(&mut self)
| 733 | // but it does not accept expression as a value |
| 734 | // https://docs.python.org/3/reference/grammar.html |
| 735 | fn parse_star_named_expression(&mut self) -> Result<Expression, ParsingError> { |
| 736 | if self.at(Kind::Mul) { |
| 737 | self.parse_or_expr() |
| 738 | } else { |
| 739 | self.parse_named_expression() |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | fn parse_star_named_expressions(&mut self) -> Result<Expression, ParsingError> { |
| 744 | let node = self.start_node(); |
no test coverage detected