diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-29T15·03+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-06T14·58+0000 |
commit | 8033a7abaea3c44a16eb6d3db477a89c2fa88a82 (patch) | |
tree | fe25f2decdae42e561dec6257287129e26812254 /tvix/eval/src/value/thunk.rs | |
parent | 28a9847c65e316fdb97c1bcb79f48cb0114724af (diff) |
refactor(tvix/eval): simplify thunk representations r/4676
For now, do not distinguish between closing and non-closing thunks, it will make the initial implementation easier. See Knuth etc. Change-Id: I0bd51e0f89f2c77e90bac63b507e5027b649e3d8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6346 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/src/value/thunk.rs')
-rw-r--r-- | tvix/eval/src/value/thunk.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tvix/eval/src/value/thunk.rs b/tvix/eval/src/value/thunk.rs index 15179388dc86..57c38e089460 100644 --- a/tvix/eval/src/value/thunk.rs +++ b/tvix/eval/src/value/thunk.rs @@ -27,13 +27,10 @@ use super::Lambda; /// Internal representation of the different states of a thunk. #[derive(Debug)] enum ThunkRepr { - /// Thunk is suspended and awaiting execution. - Suspended { lambda: Lambda }, - /// Thunk is closed over some values, suspended and awaiting /// execution. - ClosedSuspended { - lambda: Lambda, + Suspended { + lambda: Rc<Lambda>, upvalues: Vec<Value>, }, @@ -49,7 +46,10 @@ enum ThunkRepr { pub struct Thunk(Rc<RefCell<ThunkRepr>>); impl Thunk { - pub fn new(lambda: Lambda) -> Self { - Thunk(Rc::new(RefCell::new(ThunkRepr::Suspended { lambda }))) + pub fn new(lambda: Rc<Lambda>) -> Self { + Thunk(Rc::new(RefCell::new(ThunkRepr::Suspended { + lambda, + upvalues: vec![], + }))) } } |