diff options
Diffstat (limited to 'tvix/eval/src/lib.rs')
-rw-r--r-- | tvix/eval/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs index 70d2dbbe3891..6cf3aa212a18 100644 --- a/tvix/eval/src/lib.rs +++ b/tvix/eval/src/lib.rs @@ -24,7 +24,7 @@ mod tests; // Re-export the public interface used by other crates. pub use crate::builtins::global_builtins; -pub use crate::compiler::compile; +pub use crate::compiler::{compile, prepare_globals}; pub use crate::errors::EvalResult; pub use crate::eval::{interpret, Options}; pub use crate::pretty_ast::pretty_print_expr; |