chore: cargo fmt

This commit is contained in:
2025-05-19 19:40:26 +08:00
parent 9e172bf013
commit b4db46d48a
4 changed files with 44 additions and 33 deletions

View File

@@ -54,7 +54,10 @@ impl<'vm, 'jit: 'vm> Func<'jit, 'vm> {
use Param::*;
let env = match self.func.param.clone() {
Ident(ident) => self.env.clone().enter_let([(ident.into(), arg)].into_iter()),
Ident(ident) => self
.env
.clone()
.enter_let([(ident.into(), arg)].into_iter()),
Formals {
formals,
ellipsis,