We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50d0e67 commit e47e435Copy full SHA for e47e435
compiler/codegen/src/compile.rs
@@ -1996,7 +1996,12 @@ impl Compiler<'_> {
1996
}
1997
1998
if !seen_star {
1999
- emit!(self, Instruction::UnpackSequence { size: u32::try_from(n).unwrap() });
+ emit!(
2000
+ self,
2001
+ Instruction::UnpackSequence {
2002
+ size: u32::try_from(n).unwrap()
2003
+ }
2004
+ );
2005
2006
Ok(())
2007
@@ -2239,7 +2244,12 @@ impl Compiler<'_> {
2239
2244
2240
2245
// Unpack the tuple into (nargs + nattrs) items.
2241
2246
let total = nargs + nattrs;
2242
- emit!(self, Instruction::UnpackSequence { size: u32::try_from(total).unwrap() });
2247
2248
2249
2250
+ size: u32::try_from(total).unwrap()
2251
2252
2243
2253
pc.on_top += total;
2254
pc.on_top -= 1;
2255
0 commit comments