(vm: &VirtualMachine, body: &[ast::Stmt], owner: &'static str)
| 100 | } |
| 101 | |
| 102 | fn validate_body(vm: &VirtualMachine, body: &[ast::Stmt], owner: &'static str) -> PyResult<()> { |
| 103 | validate_nonempty_seq(vm, body.len(), "body", owner)?; |
| 104 | validate_stmts(vm, body) |
| 105 | } |
| 106 | |
| 107 | fn validate_interpolated_elements<'a>( |
| 108 | vm: &VirtualMachine, |
no test coverage detected