diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-24T19·08+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-03T00·47+0000 |
commit | 6ce2c666c32a3ecb5512a5b186896ae1a1f84838 (patch) | |
tree | a78a11e2f9080dc59e87470b3b11f14a6c653dac /tvix/eval/src/value/function.rs | |
parent | af9dca36635df677fce559c5fdd3f08680d84557 (diff) |
refactor(tvix/eval): introduce Closure struct in Value type r/4605
This struct will carry the upvalue machinery in addition to the lambda itself. For now, all lambdas are wrapped in closures (though technically analysis of the environment can later remove innermost Closure wrapper, but this optimisation may not be worth it). Change-Id: If2b68549ec1ea4ab838fdc47a2181c694ac937f2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6269 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/value/function.rs')
-rw-r--r-- | tvix/eval/src/value/function.rs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tvix/eval/src/value/function.rs b/tvix/eval/src/value/function.rs new file mode 100644 index 000000000000..45efc24f09f8 --- /dev/null +++ b/tvix/eval/src/value/function.rs @@ -0,0 +1,28 @@ +//! This module implements the runtime representation of functions. +use std::rc::Rc; + +use crate::chunk::Chunk; + +#[derive(Clone, Debug)] +pub struct Lambda { + // name: Option<NixString>, + pub(crate) chunk: Rc<Chunk>, +} + +impl Lambda { + pub fn new_anonymous() -> Self { + Lambda { + // name: None, + chunk: Default::default(), + } + } + + pub fn chunk(&mut self) -> &mut Rc<Chunk> { + &mut self.chunk + } +} + +#[derive(Clone, Debug)] +pub struct Closure { + pub lambda: Lambda, +} |