Skip to content

Commit

Permalink
Initialize Perl 5 var lookup at setting compile time
Browse files Browse the repository at this point in the history
And not at every startup
  • Loading branch information
lizmat committed Oct 8, 2018
1 parent 688cbac commit 9273577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Exception.pm6
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1569,7 +1569,7 @@ my class X::Syntax::ConditionalOperator::SecondPartInvalid does X::Syntax {
my class X::Syntax::Perl5Var does X::Syntax { my class X::Syntax::Perl5Var does X::Syntax {
has $.name; has $.name;
has $.identifier-name; has $.identifier-name;
my %m = BEGIN my %m =
'$"' => '.join() method', '$"' => '.join() method',
'$$' => '$*PID', '$$' => '$*PID',
'$;' => 'real multidimensional hashes', '$;' => 'real multidimensional hashes',
Expand Down

0 comments on commit 9273577

Please sign in to comment.