blob: 2cecb4f5373bc675c57fa44b970558a9ba504b80 (
plain) (
tree)
|
|
//! This module implements the runtime representation of functions.
use std::rc::Rc;
use crate::chunk::Chunk;
use super::NixString;
#[derive(Clone, Debug)]
pub struct Lambda {
name: Option<NixString>,
chunk: Rc<Chunk>,
}
|