tvl-depot/tvix/eval/src/value/function.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
810 B
Rust
Raw Normal View History

//! This module implements the runtime representation of functions.
use std::rc::Rc;
use crate::{chunk::Chunk, Value};
#[derive(Clone, Debug)]
pub struct Lambda {
// name: Option<NixString>,
pub(crate) chunk: Rc<Chunk>,
pub(crate) upvalue_count: usize,
}
impl Lambda {
pub fn new_anonymous() -> Self {
Lambda {
// name: None,
chunk: Default::default(),
upvalue_count: 0,
}
}
pub fn chunk(&mut self) -> &mut Rc<Chunk> {
&mut self.chunk
}
}
#[derive(Clone, Debug)]
pub struct Closure {
pub lambda: Lambda,
pub upvalues: Vec<Value>,
}
impl Closure {
pub fn new(lambda: Lambda) -> Self {
Closure {
upvalues: Vec::with_capacity(lambda.upvalue_count),
lambda,
}
}
}