diff options
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index e672b0f5baba..b9bbb5c9f17e 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -237,13 +237,13 @@ impl Compiler<'_> { ast::InterpolPart::Interpolation(node) => self.compile(slot, node.expr().unwrap()), ast::InterpolPart::Literal(lit) => { - self.emit_constant_old(Value::String(lit.into())); + self.emit_constant(Value::String(lit.into()), &node); } } } if count != 1 { - self.push_op_old(OpCode::OpInterpolate(Count(count))); + self.push_op(OpCode::OpInterpolate(Count(count)), &node); } } |