chore: cargo fmt

This commit is contained in:
2025-05-17 20:08:16 +08:00
parent ec61eaa140
commit c3d365d486
5 changed files with 25 additions and 28 deletions

View File

@@ -97,7 +97,9 @@ impl Compile for ir::Thunk {
impl Compile for ir::Attrs {
fn compile(self, comp: &mut Compiler) {
comp.push(OpCode::AttrSet { cap: self.stcs.len() + self.dyns.len() });
comp.push(OpCode::AttrSet {
cap: self.stcs.len() + self.dyns.len(),
});
for stc in self.stcs {
stc.1.compile(comp);
if !self.rec {