(&self)
| 289 | /// Whether the stack is empty. |
| 290 | #[inline(always)] |
| 291 | fn stack_is_empty(&self) -> bool { |
| 292 | self.stack_top == 0 |
| 293 | } |
| 294 | |
| 295 | /// Push a value onto the evaluation stack. |
| 296 | #[inline(always)] |
no outgoing calls
no test coverage detected