Skip to content

Commit

Permalink
Merge pull request #2508 from FCO/master
Browse files Browse the repository at this point in the history
Fix shaped dynamic var (my %*a{Int})
  • Loading branch information
lizmat committed Nov 27, 2018
2 parents 7a82deb + bcdf87a commit 43ac327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Grammar.nqp
Expand Up @@ -2281,7 +2281,7 @@ grammar Perl6::Grammar is HLL::Grammar does STD {
{
$*VARIABLE := $<variable>.ast.name;
$/.add_variable($*VARIABLE);
$sigil := nqp::substr($*VARIABLE, 0, 1);
$sigil := $<variable><sigil>.Str;
$*IN_DECL := '';
}
[
Expand Down

0 comments on commit 43ac327

Please sign in to comment.