about summary refs log tree commit diff
path: root/tvix/eval/src/main.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-08-07T20·41+0300
committertazjin <tazjin@tvl.su>2022-08-12T13·05+0000
commit34df2c8473e681335351f95d5e07d56d24262a81 (patch)
tree8d1527a00fc28d7ef9c06111793ea3bf4ef6ecfe /tvix/eval/src/main.rs
parent3aaefc3000dd80b88d30aefd9e58ceee5a1eddee (diff)
feat(tvix/eval): add initial barebones compiler r/4406
This compiler can only take care of very trivial literals so far.

Change-Id: I9dfac75a801b7235f868061a979ae24159fe1425
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6070
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/src/main.rs')
-rw-r--r--tvix/eval/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/main.rs b/tvix/eval/src/main.rs
index c55f48a543..bdb5818a3c 100644
--- a/tvix/eval/src/main.rs
+++ b/tvix/eval/src/main.rs
@@ -5,6 +5,7 @@ use std::{
 };
 
 mod chunk;
+mod compiler;
 mod errors;
 mod eval;
 mod opcode;