diff options
author | Vincent Ambo <mail@tazj.in> | 2022-09-24T13·00+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-29T11·47+0000 |
commit | d54aeb1f2055bdac05cb62ab30b6c63dc86a78e0 (patch) | |
tree | 225df28fca4e3ba540e1537cb7743135303d491e /tvix/eval/src/opcode.rs | |
parent | 3f2160627895e7d1fe3236812b83bddc5d3049f5 (diff) |
chore(tvix/eval): remove existing nested key implementation r/4990
This implementation, which only ever worked for non-recursive attribute sets, is no longer needed and thus removed here. We have a new implementation of these nested keys coming up instead. Change-Id: I0c2875154026a4f5f6e0aa038e465f54444bf721 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6783 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/opcode.rs')
-rw-r--r-- | tvix/eval/src/opcode.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tvix/eval/src/opcode.rs b/tvix/eval/src/opcode.rs index 9ddd1953210c..c2eabba1c28e 100644 --- a/tvix/eval/src/opcode.rs +++ b/tvix/eval/src/opcode.rs @@ -91,7 +91,6 @@ pub enum OpCode { /// Note that this takes the count of *pairs*, not the number of *stack values* - the actual /// number of values popped off the stack will be twice the argument to this op OpAttrs(Count), - OpAttrPath(Count), OpAttrsUpdate, OpAttrsSelect, OpAttrsTrySelect, |