diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-07T20·41+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-08-12T13·05+0000 |
commit | 3aaefc3000dd80b88d30aefd9e58ceee5a1eddee (patch) | |
tree | 7eea6ae2df40781cf7850ac18c0fa38ada1be97a /tvix/eval/src/main.rs | |
parent | 48a7449834246ad967301f2dc011b019171a5bbc (diff) |
feat(tvix/eval): add initial chunk representation r/4405
Change-Id: I53202e93938bede421c8f1c98901e4c67544e257 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6069 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/src/main.rs')
-rw-r--r-- | tvix/eval/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/main.rs b/tvix/eval/src/main.rs index fc366961b536..c55f48a5432e 100644 --- a/tvix/eval/src/main.rs +++ b/tvix/eval/src/main.rs @@ -4,6 +4,7 @@ use std::{ mem, process, }; +mod chunk; mod errors; mod eval; mod opcode; |