diff options
Diffstat (limited to 'tvix/eval/src/opcode.rs')
-rw-r--r-- | tvix/eval/src/opcode.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/src/opcode.rs b/tvix/eval/src/opcode.rs index fdc916ca7f79..70ef1a3b5324 100644 --- a/tvix/eval/src/opcode.rs +++ b/tvix/eval/src/opcode.rs @@ -117,6 +117,9 @@ pub enum OpCode { /// [`NixSearchPath`]: crate::nix_search_path::NixSearchPath OpFindFile, + /// Attempt to resolve a path literal relative to the home dir + OpResolveHomePath, + // Type assertion operators OpAssertBool, |