diff options
Diffstat (limited to 'tvix/eval/src/vm.rs')
-rw-r--r-- | tvix/eval/src/vm.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/src/vm.rs b/tvix/eval/src/vm.rs index 66126881a84f..8a6959114fff 100644 --- a/tvix/eval/src/vm.rs +++ b/tvix/eval/src/vm.rs @@ -282,6 +282,9 @@ impl VM { } OpCode::OpPushWith(idx) => self.with_stack.push(idx), + OpCode::OpPopWith => { + self.with_stack.pop(); + } } #[cfg(feature = "disassembler")] |