(
vm: &VirtualMachine,
exprs: &[ast::Expr],
ctx: ast::ExprContext,
_null_ok: bool,
)
| 290 | } |
| 291 | |
| 292 | fn validate_exprs( |
| 293 | vm: &VirtualMachine, |
| 294 | exprs: &[ast::Expr], |
| 295 | ctx: ast::ExprContext, |
| 296 | _null_ok: bool, |
| 297 | ) -> PyResult<()> { |
| 298 | for expr in exprs { |
| 299 | validate_expr(vm, expr, ctx)?; |
| 300 | } |
| 301 | Ok(()) |
| 302 | } |
| 303 | |
| 304 | fn validate_expr(vm: &VirtualMachine, expr: &ast::Expr, ctx: ast::ExprContext) -> PyResult<()> { |
| 305 | let mut check_ctx = true; |
no test coverage detected