Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix missing $*W, spotted by cygx++
  • Loading branch information
lizmat committed Oct 17, 2015
1 parent c589177 commit c8b4897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Grammar.nqp
Expand Up @@ -1508,7 +1508,7 @@ grammar Perl6::Grammar is HLL::Grammar does STD {
| <version> [
|| <?{ $<version><vnum>[0] == 5 }> {
my $module := $*W.load_module($/, 'Perl5', {}, $*GLOBALish);
do_import($/, $module, 'Perl5');
$*W.do_import($/, $module, 'Perl5');
$/.CURSOR.import_EXPORTHOW($/, $module);
}
|| <?{ $<version><vnum>[0] == 6 }> {
Expand Down

0 comments on commit c8b4897

Please sign in to comment.