(&mut self)
| 9354 | #[inline] |
| 9355 | #[track_caller] |
| 9356 | fn pop_stackref(&mut self) -> PyStackRef { |
| 9357 | expect_unchecked( |
| 9358 | self.pop_stackref_opt(), |
| 9359 | "pop stackref but null found. This is a compiler bug.", |
| 9360 | ) |
| 9361 | } |
| 9362 | |
| 9363 | /// Pop a value from the stack, returning None if the stack slot is NULL. |
| 9364 | /// Automatically promotes borrowed refs to owned. |
no test coverage detected