We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e1a13 commit ac03bc6Copy full SHA for ac03bc6
src/vm/js/Operations.nqp
@@ -1329,7 +1329,7 @@ class QAST::OperationsJS {
1329
my str $neg := ($op eq 'while' || $op eq 'repeat_while') ?? '!' !! '';
1330
1331
# With perl6 we always emit all handlers
1332
- my $has_redo := $*HLL ne 'nqp' || $loop.has_redo || $repeat_variant; # we don't use 'my int' due to NQP bug
+ my int $has_redo := $*HLL ne 'nqp' || $loop.has_redo || $repeat_variant;
1333
1334
Chunk.void(
1335
$repeat_variant ?? "{$loop.redo} = true;\n" !! '',
0 commit comments