Skip to content

Commit e47e435

Browse files
committed
formatting
1 parent 50d0e67 commit e47e435

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

compiler/codegen/src/compile.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -1996,7 +1996,12 @@ impl Compiler<'_> {
19961996
}
19971997
}
19981998
if !seen_star {
1999-
emit!(self, Instruction::UnpackSequence { size: u32::try_from(n).unwrap() });
1999+
emit!(
2000+
self,
2001+
Instruction::UnpackSequence {
2002+
size: u32::try_from(n).unwrap()
2003+
}
2004+
);
20002005
}
20012006
Ok(())
20022007
}
@@ -2239,7 +2244,12 @@ impl Compiler<'_> {
22392244

22402245
// Unpack the tuple into (nargs + nattrs) items.
22412246
let total = nargs + nattrs;
2242-
emit!(self, Instruction::UnpackSequence { size: u32::try_from(total).unwrap() });
2247+
emit!(
2248+
self,
2249+
Instruction::UnpackSequence {
2250+
size: u32::try_from(total).unwrap()
2251+
}
2252+
);
22432253
pc.on_top += total;
22442254
pc.on_top -= 1;
22452255

0 commit comments

Comments
 (0)