pub type FunctionNodeTrace = Variable;
Aliased Type§
pub enum FunctionNodeTrace {
Null,
Bool(bool),
Number(Decimal),
String(Rc<str>),
Array(Rc<RefCell<Vec<Variable>>>),
Object(Rc<RefCell<HashMap<Rc<str>, Variable, RandomState>>>),
Dynamic(Rc<dyn DynamicVariable>),
}