diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-29T15·07+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-06T14·58+0000 |
commit | 25c62dd0ef70a37915957bb1eb8ba3f4885c7aad (patch) | |
tree | adfd834383a0238bafc1cd64418b7114e4c4521e /tvix/eval/src/lib.rs | |
parent | 8033a7abaea3c44a16eb6d3db477a89c2fa88a82 (diff) |
refactor(tvix/eval): introduce UpvalueCarrier trait r/4677
This trait abstracts over the commonalities of upvalue handling between closures and thunks. It allows the VM to simplify the code used for setting up upvalues, without duplicating between the two different types. Note that this does not yet refactor the VM code to optimally make use of this. Change-Id: If8de5181f26ae1fa00d554f1ae6ea473ee4b6070 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6347 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/src/lib.rs')
-rw-r--r-- | tvix/eval/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs index eebccc873956..7156a03b6444 100644 --- a/tvix/eval/src/lib.rs +++ b/tvix/eval/src/lib.rs @@ -4,6 +4,7 @@ mod compiler; mod errors; mod eval; mod opcode; +mod upvalues; mod value; mod vm; mod warnings; |