git.delta.rocks / jrsonnet / refs/commits / 7c0b0974dac4

difftreelog

style fix formatting

Yaroslav Bolyukin2021-11-27parent: #8839b5b.patch.diff
in: master

3 files changed

modifiedcrates/jrsonnet-evaluator/src/evaluate/mod.rsdiffbeforeafterboth

no syntactic changes

modifiedcrates/jrsonnet-evaluator/src/function.rsdiffbeforeafterboth
1use crate::{Context, FutureWrapper, GcHashMap, LazyVal, LazyValValue, Result, Val, error::Error::*, evaluate, evaluate_named, gc::TraceBox, throw};1use crate::{
2 error::Error::*, evaluate, evaluate_named, gc::TraceBox, throw, Context, FutureWrapper,
3 GcHashMap, LazyVal, LazyValValue, Result, Val,
4};
2use gcmodule::Trace;5use gcmodule::Trace;
3use jrsonnet_interner::IStr;6use jrsonnet_interner::IStr;
189 }192 }
190 LazyVal::new(TraceBox(Box::new(EvaluateLazyVal {193 LazyVal::new(TraceBox(Box::new(EvaluateLazyVal { body_ctx, default })))
191 body_ctx,
192 default,
193 })))
194 }194 }
195 } else {195 } else {
modifiedcrates/jrsonnet-evaluator/src/typed.rsdiffbeforeafterboth
1use std::{fmt::Display, rc::Rc};1use std::{fmt::Display, rc::Rc};
22
3use crate::{Val, error::{Error, LocError, Result}, push_description_frame};3use crate::{
4 error::{Error, LocError, Result},
5 push_description_frame, Val,
6};
4use gcmodule::Trace;7use gcmodule::Trace;
5use jrsonnet_types::{ComplexValType, ValType};8use jrsonnet_types::{ComplexValType, ValType};