difftreelog
fixup! fix formatting
in: master
3 files changed
crates/jrsonnet-evaluator/src/error.rsdiffbeforeafterboth2 cmp::Ordering, convert::Infallible, fmt::{Debug, Display}, path::PathBuf2 cmp::Ordering,3 convert::Infallible,4 fmt::{Debug, Display},5 path::PathBuf,3};6};475use jrsonnet_gcmodule::Trace;8use jrsonnet_gcmodule::Trace;crates/jrsonnet-evaluator/src/evaluate/mod.rsdiffbeforeafterboth37 }37 }38 Some(match &*expr.0 {38 Some(match &*expr.0 {39 Expr::Str(s) => Val::string(s.clone()),39 Expr::Str(s) => Val::string(s.clone()),40 Expr::Num(n) => Val::Num(NumValue::new(*n).expect("parser will not allow non-finite values")),40 Expr::Num(n) => {41 Val::Num(NumValue::new(*n).expect("parser will not allow non-finite values"))42 }41 Expr::Literal(LiteralType::False) => Val::Bool(false),43 Expr::Literal(LiteralType::False) => Val::Bool(false),42 Expr::Literal(LiteralType::True) => Val::Bool(true),44 Expr::Literal(LiteralType::True) => Val::Bool(true),43 Expr::Literal(LiteralType::Null) => Val::Null,45 Expr::Literal(LiteralType::Null) => Val::Null,crates/jrsonnet-rowan-parser/src/marker.rsdiffbeforeafterbothno syntactic changes