File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -1996,7 +1996,12 @@ impl Compiler<'_> {
1996
1996
}
1997
1997
}
1998
1998
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
+ ) ;
2000
2005
}
2001
2006
Ok ( ( ) )
2002
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
+ emit ! (
2248
+ self ,
2249
+ Instruction :: UnpackSequence {
2250
+ size: u32 :: try_from( total) . unwrap( )
2251
+ }
2252
+ ) ;
2243
2253
pc. on_top += total;
2244
2254
pc. on_top -= 1 ;
2245
2255
You can’t perform that action at this time.
0 commit comments