From 7da5076191d4037b9a0cfb5c818d64eb2822d9d0 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 26 Aug 2022 18:40:55 +0300 Subject: refactor(tvix/eval): rename Value::NotFound & OpAttrOrNotFound grfn suggested clearer naming for these in cl/6166. Change-Id: I83164bf1d1902ebd42272e9d5d63819a0f6a72c5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6277 Reviewed-by: grfn Tested-by: BuildkiteCI --- tvix/eval/src/compiler/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tvix/eval/src/compiler/mod.rs') diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index a7e5ceb32af4..d40cb1e14e06 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -429,7 +429,7 @@ impl Compiler { // next nested element, for all fragments except the last one. for (count, fragment) in node.attrpath().unwrap().attrs().enumerate() { if count > 0 { - self.chunk().push_op(OpCode::OpAttrOrNotFound); + self.chunk().push_op(OpCode::OpAttrsTrySelect); } self.compile_attr(fragment); @@ -616,7 +616,7 @@ impl Compiler { for fragment in path.attrs() { self.compile_attr(fragment); - self.chunk().push_op(OpCode::OpAttrOrNotFound); + self.chunk().push_op(OpCode::OpAttrsTrySelect); jumps.push(self.chunk().push_op(OpCode::OpJumpIfNotFound(0))); } -- cgit 1.4.1