diff --git a/src/runner.rs b/src/runner.rs index 6933e66..5cd662b 100644 --- a/src/runner.rs +++ b/src/runner.rs @@ -1360,7 +1360,9 @@ impl ValueStack { #[inline] fn top(&self) -> &RuntimeValueInternal { - self.0.top().expect("pre-validated") + self.0 + .top() + .expect("The stack is empty, this should never be possible due to the validation step") } #[inline]