From 34df2c8473e681335351f95d5e07d56d24262a81 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 7 Aug 2022 23:41:42 +0300 Subject: feat(tvix/eval): add initial barebones compiler 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 --- tvix/eval/src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'tvix/eval/src/main.rs') 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; -- cgit 1.4.1