chore: cargo fmt

This commit is contained in:
2025-06-17 11:59:53 +08:00
parent 7f6848c9e5
commit 3e9f0a72a0
7 changed files with 65 additions and 38 deletions

View File

@@ -208,7 +208,7 @@ impl Value {
let len = args.len() + old.len();
env.enter_args(std::mem::take(old));
env.enter_cache_level(|env| {
let mut args = args.into_iter().peekable();
let mut args = args.into_iter().peekable();
env.enter_arg(args.next().unwrap());
let mut ret = engine.eval_thunk(idx, env)?;
while args.peek().is_some() {