Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
don't give capture parameters a scalar container
spec tests are fine, suggesting that there's never a need
for a capture parameter to have a scalar container to live
in.
  • Loading branch information
timo committed Sep 27, 2015
1 parent be141b8 commit 7116059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/World.nqp
Expand Up @@ -1480,7 +1480,7 @@ class Perl6::World is HLL::World {
$flags := $flags + $SIG_ELEM_SLURPY_ONEARG;
}
if %param_info<is_capture> {
$flags := $flags + $SIG_ELEM_IS_CAPTURE;
$flags := $flags + $SIG_ELEM_IS_CAPTURE + $SIG_ELEM_IS_RAW;
}
if %param_info<undefined_only> {
$flags := $flags + $SIG_ELEM_UNDEFINED_ONLY;
Expand Down

0 comments on commit 7116059

Please sign in to comment.