MCPcopy Create free account
hub / github.com/astral-sh/ruff / validate_delete_target

Method validate_delete_target

crates/ruff_python_parser/src/parser/statement.rs:3867–3877  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 ///

Callers 1

Calls 1

add_errorMethod · 0.45

Tested by

no test coverage detected