diff options
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index 2c2576702e76..688013f439cb 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -427,7 +427,7 @@ impl Compiler<'_> { self.compile(slot, item); } - self.push_op_old(OpCode::OpList(Count(count))); + self.push_op(OpCode::OpList(Count(count)), &node); } // Compile attribute set literals into equivalent bytecode. |