Validate that the given expression is a valid delete target. If the expression is a list or tuple, then validate each element in the list. See:
(&mut self, expr: &Expr)
| 3865 | /// |
| 3866 | /// See: <https://github.com/python/cpython/blob/d864b0094f9875c5613cbb0b7f7f3ca8f1c6b606/Parser/action_helpers.c#L1150-L1180> |
| 3867 | fn validate_delete_target(&mut self, expr: &Expr) { |
| 3868 | match expr { |
| 3869 | Expr::List(ast::ExprList { elts, .. }) | Expr::Tuple(ast::ExprTuple { elts, .. }) => { |
| 3870 | for expr in elts { |
| 3871 | self.validate_delete_target(expr); |
| 3872 | } |
| 3873 | } |
| 3874 | Expr::Name(_) | Expr::Attribute(_) | Expr::Subscript(_) => {} |
| 3875 | _ => self.add_error(ParseErrorType::InvalidDeleteTarget, expr), |
| 3876 | } |
| 3877 | } |
| 3878 | |
| 3879 | /// Classify the `match` soft keyword token. |
| 3880 | /// |
no test coverage detected