diff options
Diffstat (limited to 'tvix/eval/src/opcode.rs')
-rw-r--r-- | tvix/eval/src/opcode.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tvix/eval/src/opcode.rs b/tvix/eval/src/opcode.rs index 15f60a538c41..96234ccd233c 100644 --- a/tvix/eval/src/opcode.rs +++ b/tvix/eval/src/opcode.rs @@ -112,6 +112,12 @@ pub enum OpCode { /// `CoercionKind::Weak`. OpCoerceToString, + // Paths + /// Attempt to resolve the Value on the stack using the configured [`NixPath`][] + /// + /// [`NixPath`]: crate::nix_path::NixPath + OpFindFile, + // Type assertion operators OpAssertBool, |