git.delta.rocks / jrsonnet / refs/commits / 6f3c7e9a1571

difftreelog

fix member functions have no names

Yaroslav Bolyukin2021-03-27parent: #ec654c4.patch.diff
in: master

1 file changed

modifiedcrates/jrsonnet-evaluator/src/evaluate.rsdiffbeforeafterboth
278 visibility: *visibility,278 visibility: *visibility,
279 invoke: LazyBinding::Bindable(Rc::new(279 invoke: LazyBinding::Bindable(Rc::new(
280 closure!(clone name, clone value, clone context_creator, |this, super_obj| {280 closure!(clone name, clone value, clone context_creator, |this, super_obj| {
281 Ok(LazyVal::new_resolved(evaluate(281 Ok(LazyVal::new_resolved(evaluate_named(
282 context_creator.create(this, super_obj)?,282 context_creator.create(this, super_obj)?,
283 &value,283 &value,
284 name.clone(),
284 )?))285 )?))
285 }),286 }),
286 )),287 )),