diff options
Diffstat (limited to 'tvix/eval/src/opcode.rs')
-rw-r--r-- | tvix/eval/src/opcode.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/src/opcode.rs b/tvix/eval/src/opcode.rs index ce17dab63124..4a4d47045fbd 100644 --- a/tvix/eval/src/opcode.rs +++ b/tvix/eval/src/opcode.rs @@ -52,6 +52,9 @@ pub enum OpCode { OpAttrOrNotFound, OpAttrsIsSet, + // `with`-handling + OpPushWith(usize), + // Lists OpList(usize), OpConcat, |