about summary refs log tree commit diff
path: root/tvix/eval
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval')
-rw-r--r--tvix/eval/src/compiler/mod.rs11
1 files changed, 3 insertions, 8 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs
index a552f50b5e..99e1d4c53c 100644
--- a/tvix/eval/src/compiler/mod.rs
+++ b/tvix/eval/src/compiler/mod.rs
@@ -46,10 +46,9 @@ pub struct CompilationOutput {
     pub warnings: Vec<EvalWarning>,
     pub errors: Vec<Error>,
 
-    // This field must outlive the rc::Weak reference which breaks
-    // the builtins -> import -> builtins reference cycle.
-    //
-    // TODO: ensure through compiler
+    // This field must outlive the rc::Weak reference which breaks the
+    // builtins -> import -> builtins reference cycle. For this
+    // reason, it must be passed to the VM.
     pub globals: Rc<GlobalsMap>,
 }
 
@@ -1266,10 +1265,6 @@ pub fn prepare_globals(
         // builtins contain themselves (`builtins.builtins`), which we
         // can resolve by manually constructing a suspended thunk that
         // dereferences the same weak pointer as above.
-        //
-        // This is an inefficient hack, but *if* anyone was to use
-        // `builtins.builtins`, it would only happen once as the thunk
-        // is then resolved.
         let weak_globals = weak.clone();
         builtins.insert(
             "builtins",