(&self, localsplus_idx: usize)
| 1384 | /// Access the PyCellRef at the given localsplus index. |
| 1385 | #[inline(always)] |
| 1386 | fn cell_ref(&self, localsplus_idx: usize) -> &PyCell { |
| 1387 | let fastlocals = self.localsplus.fastlocals(); |
| 1388 | let slot = &fastlocals[localsplus_idx]; |
| 1389 | slot.as_ref() |
| 1390 | .expect("cell slot empty") |
| 1391 | .downcast_ref::<PyCell>() |
| 1392 | .expect("cell slot is not a PyCell") |
| 1393 | } |
| 1394 | |
| 1395 | /// Perform deferred stack unwinding after set_f_lineno. |
| 1396 | /// |
no test coverage detected