Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't override a specified sigil in [...] unpack.
  • Loading branch information
jnthn committed Jun 2, 2014
1 parent bd78aef commit 394a74d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.nqp
Expand Up @@ -3848,7 +3848,7 @@ class Perl6::Actions is HLL::Actions does STDActions {
}
%*PARAM_INFO<sub_signature_params> := $<signature>.ast;
if nqp::substr(~$/, 0, 1) eq '[' {
%*PARAM_INFO<sigil> := '@';
%*PARAM_INFO<sigil> := '@' unless %*PARAM_INFO<sigil>;
}
}
else {
Expand Down

0 comments on commit 394a74d

Please sign in to comment.