refactor(tvix/eval): keep globals alive through VM struct
This forces users to pass the fully constructed set of globals to the VM, making it harder to accidentally "lose" the set while weak references to it still exist. This doesn't modify any functionality, but is laying the foundation for simplifying some of the builtins behaviour that has grown more complex again. Change-Id: I5120f97861c65dc46d90b8a4e2c92ad32cc53e03 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7877 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
This commit is contained in:
parent
6d03e31060
commit
7442558b33
4 changed files with 59 additions and 10 deletions
|
@ -213,7 +213,7 @@ impl<'code, 'co, 'ro> Evaluation<'code, 'co, 'ro> {
|
|||
let mut noop_observer = observer::NoOpObserver::default();
|
||||
let compiler_observer = self.compiler_observer.take().unwrap_or(&mut noop_observer);
|
||||
|
||||
let (lambda, _globals) = match parse_compile_internal(
|
||||
let (lambda, globals) = match parse_compile_internal(
|
||||
&mut result,
|
||||
self.code,
|
||||
self.file.clone(),
|
||||
|
@ -246,7 +246,7 @@ impl<'code, 'co, 'ro> Evaluation<'code, 'co, 'ro> {
|
|||
.unwrap_or_default();
|
||||
|
||||
let runtime_observer = self.runtime_observer.take().unwrap_or(&mut noop_observer);
|
||||
let vm_result = run_lambda(nix_path, self.io_handle, runtime_observer, lambda);
|
||||
let vm_result = run_lambda(nix_path, self.io_handle, runtime_observer, globals, lambda);
|
||||
|
||||
match vm_result {
|
||||
Ok(mut runtime_result) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue