diff options
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index c99415d845b9..2c2576702e76 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -988,7 +988,10 @@ impl Compiler<'_> { /// several operations related to attribute sets, where /// identifiers are used as string keys. fn emit_literal_ident(&mut self, ident: &ast::Ident) { - self.emit_constant_old(Value::String(ident.ident_token().unwrap().text().into())); + self.emit_constant( + Value::String(ident.ident_token().unwrap().text().into()), + ident, + ); } /// Patch the jump instruction at the given index, setting its |