about summary refs log tree commit diff
path: root/corp
diff options
context:
space:
mode:
Diffstat (limited to 'corp')
-rw-r--r--corp/tvixbolt/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/corp/tvixbolt/src/main.rs b/corp/tvixbolt/src/main.rs
index 0de48b3ac7..5a4f250881 100644
--- a/corp/tvixbolt/src/main.rs
+++ b/corp/tvixbolt/src/main.rs
@@ -286,7 +286,7 @@ fn eval(model: &Model) -> Output {
         return out;
     }
 
-    let mut eval = tvix_eval::Evaluation::new(&model.code, Some("/nixbolt".into()));
+    let mut eval = tvix_eval::Evaluation::default();
     let source = eval.source_map();
 
     let result = {
@@ -298,7 +298,7 @@ fn eval(model: &Model) -> Output {
             eval.runtime_observer = Some(&mut runtime_observer);
         }
 
-        eval.evaluate()
+        eval.evaluate(&model.code, Some("/nixbolt".into()))
     };
 
     if model.display_ast {